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
{{ message }}
This repository was archived by the owner on Mar 30, 2023. It is now read-only.
@import "bootstrap/scss/functions"; // Required
@import "bootstrap/scss/variables"; // Required
@import "bootstrap/scss/mixins"; // Required
//
// Override Bootstrap here
//
$primary: red;
$link-color: red; // All other elements using $primary will still appear $blue
Issue appears to be inherent in bootstrap, and not with this starter template.
Overriding some variable default only affect that variable, and does not affect other variables using that variable.
For example here's a snippet from _variables.scss
Now if I override the variable
$primarythen it will not reflect in$link-color.This will not work
Direct override will work
Issue appears to be inherent in bootstrap, and not with this starter template.