1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

fixes navbar-text link colors (#23702)

This commit is contained in:
Andres Galante 2017-10-02 10:11:11 -07:00 committed by Mark Otto
parent 67d7e26e05
commit acf76a4513

View file

@ -238,6 +238,13 @@
.navbar-text {
color: $navbar-light-color;
a {
color: $navbar-light-active-color;
@include hover-focus {
color: $navbar-light-active-color;
}
}
}
}
@ -283,5 +290,12 @@
.navbar-text {
color: $navbar-dark-color;
a {
color: $navbar-dark-active-color;
@include hover-focus {
color: $navbar-dark-active-color;
}
}
}
}