Skip to content

Commit

Permalink
Merge pull request #21046 from abvalentine/issue-20975
Browse files Browse the repository at this point in the history
Fixes #20975: navbar-text on navbar-dark and bg-inverse is invisible
  • Loading branch information
mdo authored Oct 30, 2016
2 parents b071de6 + 34ec049 commit 9ff1989
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scss/_navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,10 @@
.navbar-divider {
background-color: rgba(0,0,0,.075);
}

.navbar-text {
color: $navbar-light-color;
}
}

// White links against a dark background
Expand Down Expand Up @@ -266,6 +270,10 @@
.navbar-divider {
background-color: rgba(255,255,255,.075);
}

.navbar-text {
color: $navbar-dark-color;
}
}


Expand Down

0 comments on commit 9ff1989

Please sign in to comment.