Hello, would you be able to help me figure out how to override default variables in application.scss? I've tried a few simple examples inside application.scss to get proof of concept.
Attempt 1 doesn't work
// from the bulma customize page, but asset pipeline doesn't recognize
@import "../sass/utilities/initial-variables";
@import "../sass/utilities/functions";
Attempt 2 doesn't work
@import "bulma";
$primary: red;
Attempt 3 hack
I suppose I could override the classes themselves but I'm hoping to be able to figure out where to customize the variables.
@import "bulma";
.is-primary {
background: red !important;
}
Hello, would you be able to help me figure out how to override default variables in
application.scss
? I've tried a few simple examples insideapplication.scss
to get proof of concept.Attempt 1 doesn't work
Attempt 2 doesn't work
Attempt 3 hack
I suppose I could override the classes themselves but I'm hoping to be able to figure out where to customize the variables.
Any suggestions?
Thanks!