SlickNav
SlickNav copied to clipboard
Overriding SCSS variables
Trying to override variables with no luck. I did this:
$color_bg: #fff;
@import slicknav;
Can't get that background to change. What am I doing wrong? You need to add some info about the SCSS to your documentation...
From a quick look, $color_bg
is defined like this in theme.scss
:
$color_bg: #4c4c4c;
It is not overrideable unless it has !default
, like so:
$color_bg: #4c4c4c !default;
So, a pull request is in order. :beers: