1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-13 17:14:04 +02: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;
}
}
}
}