You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every Sass variable in Bootstrap 4 includes the !default flag, meaning you can override that default value in your own Sass even after that original variable’s been defined. Copy and paste variables as needed, modify the values, remove the !default flag, and recompile.
I read this to mean that I can override variables in my Sass after importing bootstrap.scss:
The customizing options doc says:
I read this to mean that I can override variables in my Sass after importing bootstrap.scss:
_my-overrides.scss:
Per the Sass docs for
!default
variables:So really, I have to do overrides before Boostrap imports _variables.scss:
I think the docs could be a little clearer in this regard.
The text was updated successfully, but these errors were encountered: