2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-15 11:59:39 +03: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
+14
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;
}
}
}
}