I'm doing a tutorial to learn Bootstrap 4 (alpha 6). I need to customize the original css configuration from bootstrap.
For this I have modified the _custom.scss:
// Bootstrap overrides
//
// Copy variables from `_variables.scss` to this file to override
default values
// without modifying source files.
$green:red;
I then recompile the bootstrap.scss file (I'm using prepros) and when I reload the page, nothing has changed. When I look to the generated bootstrap.css file the color is still the default green color from bootstrap main theme.
When I modify the _variables.scss file directly it works perfectly.
In my bootstrap.scss file the _custom.scss file is imported after _variables.scss :
// Core variables and mixins
@import "variables";
@import "mixins";
@import "custom";
Does anyone have a clue on why this isn't working ?