Fixes #1599: Reduce mobile cut-off for navigation menu to 960px

This commit is contained in:
Jeremy Stretch 2017-11-15 14:57:56 -05:00
parent 124878ed22
commit 8299c735b1

View File

@ -42,8 +42,15 @@ footer p {
} }
} }
/* Collapse the nav menu on displays less than 1200px wide */ /* Hide the search bar in the navigation menu on displays less than 1200px wide */
@media (max-width: 1199px) { @media (max-width: 1199px) {
#navbar_search {
display: none;
}
}
/* Collapse the nav menu on displays less than 960px wide */
@media (max-width: 959px) {
.navbar-header { .navbar-header {
float: none; float: none;
} }