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 Apr 1, 2024. It is now read-only.
I have created a _sass/_custom-variables.scss file with the following contents:
$primary: #9949f5;
Then in my _includes/header.html I have:
<header><navclass="navbar navbar-expand-lg navbar-dark bg-primary"><!-- rest of my navbar omitted for brevity --></nav></header>
Since I have overriden bootstrap's $primary variable and since I am assigning the bg-primary class to my navbar, I would expect my navbar's background color to be set to #9949f5, which is a purplish color. However, when I build my jekyll site, I still the stock bootstrap blue as the background.
It is not clear to me whether this is a bug with this jekyll theme or if I am doing something wrong.