1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-31 00:59:51 +02:00

creates variables for navbar brand colors #27187

This commit is contained in:
Andres Galante
2018-09-11 07:56:56 -03:00
committed by XhmikosR
parent 6e2a823a44
commit ed3c611949
2 changed files with 9 additions and 4 deletions

View File

@@ -197,10 +197,10 @@
// Dark links against a light background
.navbar-light {
.navbar-brand {
color: $navbar-light-active-color;
color: $navbar-light-brand-color;
@include hover-focus {
color: $navbar-light-active-color;
color: $navbar-light-brand-hover-color;
}
}
@@ -249,10 +249,10 @@
// White links against a dark background
.navbar-dark {
.navbar-brand {
color: $navbar-dark-active-color;
color: $navbar-dark-brand-color;
@include hover-focus {
color: $navbar-dark-active-color;
color: $navbar-dark-brand-hover-color;
}
}