Keep search box visible till 1300px

Don't hide search box until width is less than 1300px
This commit is contained in:
awfki 2017-08-08 07:48:10 -04:00 committed by GitHub
parent 36d5debe74
commit d2e1ef520f

View File

@ -74,8 +74,8 @@ footer p {
}
}
/* Hide the nav search bar on displays less than 1600px wide */
@media (max-width: 1599px) {
/* Hide the nav search bar on displays less than 1300px wide */
@media (max-width: 1299px) {
#navbar_search {
display: none;
}
@ -389,4 +389,4 @@ td .progress {
}
textarea {
font-family: Consolas, Lucida Console, monospace;
}
}