I have laravel v5.4. In my _variables.scss i defined the primary color:
$brand-primary: red;
This changes everything bootstrap related to red which is nice. But then i have also added my own scss in app.scss:
@import "variables";
@import "custom/custom";
And in custom i have the following row:
color: $brand-primary;
... but for some reason this turns the color to original bootstrap brand primary, not my red. How can i get my red color everywhere i use $brand-primary?