fix: form-control contrast on navbar-dark (fix #1227)

This commit is contained in:
Federico Zivolo 2017-12-10 17:49:47 +01:00
parent 8cecc06615
commit a9a81b8560

View File

@ -13,3 +13,11 @@
flex: 1;
}
}
// Needed to properly style inputs on dark background
.navbar-dark .form-control {
color: $white;
&::placeholder {
color: $navbar-dark-color;
}
}