After setting up my project with npm install to utilize sass overrides, I encountered an issue. Despite adjusting the $theme-colors, only part of the page reflects the change.
https://i.sstatic.net/xjrsx.png
I attempted the following:
$theme-colors: ("primary": #FF9671)
// Bootstrap Sass Files
@import "../bootstrap/scss/bootstrap"
and
$primary: #FF9671
$theme-colors: ("primary": #FF9671)
$link: $primary
// Bootstrap Sass Files
@import "../bootstrap/scss/bootstrap"
On a side note, Bootstrap suggests importing only:
@import "../bootstrap/scss/functions"
@import "../bootstrap/scss/variables"
@import "../bootstrap/scss/mixins"
However, this did not produce any changes for me. As a result, I had to import the entire bootstrap.scss file to see any effects. This feels like excessive work. Any suggestions?
Thank you in advance