mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-25 01:48:38 -06:00
Fixes #1599: Reduce mobile cut-off for navigation menu to 960px
This commit is contained in:
parent
124878ed22
commit
8299c735b1
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user