This is about the Bulma CSS framework
I'm using Bulma version 0.5.3
My browser is: Chrome
First off I apologize and feel slightly guilty as this issue seems so trivial and simple. But I cannot override the $primary variable! I've read through as many other questions similar to this that I can, but nothing is working. I am however, able to modify the $links variable?? I'm really confused.
I blew away Bulma and reinstallved via npm just to make sure I was working with everything correctly.
Here is how I am trying to do this:
@import '../node_modules/bulma/sass/utilities/_all.sass';
$primary: red; # this does nothing
$link: blue; # this does change links to blue!
$primary: orange !important; # even this does nothing
@import '../node_modules/bulma/bulma';
Trying to customize some simple variables.
The $primary variable, at least, does not change according to my instructions.
Try setting the variables before importing ./sass/utilities/_all.sass.
Oh. My. Gosh.
I felt convinced I tried that... but apparently not? Welp, it worked! Thanks 馃憤
Great!
Please close this issue if you consider it resolved.
Most helpful comment
Try setting the variables before importing
./sass/utilities/_all.sass.