1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #3422: Prevent navigation menu from overlapping page content

This commit is contained in:
Jeremy Stretch
2019-08-12 11:57:48 -04:00
parent f18c3be745
commit 116c395948
4 changed files with 125 additions and 4 deletions

View File

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