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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user