Guru-Digital-Archive / bootswatch-sass

Themes for Bootstrap SCSS Version
http://guru-digital.github.io/bootswatch-sass/
MIT License
2 stars 1 forks source link

Slate, $navbar-default-bg is defined after it is used in variables #1

Open DavidStummer opened 8 years ago

DavidStummer commented 8 years ago

Which means the default bootstrap $navbar-default-bg is used. I hacked a solution:

@import "./../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables"; $navbar-default-bg: $gray-dark; // required, bug in file below: @import "./../../node_modules/bootswatch-sass/slate/variables"; @import "./../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; @import "./../../node_modules/bootswatch-sass/slate/bootswatch";

sjohnr commented 7 years ago

+1, I also encountered this issue.

So far, I've had to fix the following, there may be a few others:

$navbar-default-bg:     $gray-dark;
$btn-default-bg:        $gray-dark;
$btn-default-border:    $gray-dark;
$label-default-bg:      $gray-dark;