Skip to content

Commit

Permalink
Fixes #507: Corrected rendering of nav menu on screens narrower than …
Browse files Browse the repository at this point in the history
…1200px
  • Loading branch information
jeremystretch committed Sep 12, 2016
1 parent 98fe839 commit 6af7403
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions netbox/project-static/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ body {
footer p {
margin: 20px 0;
}
@media (max-width: 1120px) {

@media (max-width: 1200px) {
.navbar-header {
float: none;
}
Expand All @@ -54,6 +55,7 @@ footer p {
}
.navbar-collapse.collapse {
display: none!important;
max-height: none;
}
.navbar-nav {
float: none!important;
Expand Down Expand Up @@ -84,13 +86,11 @@ th.pk, td.pk {
width: 30px;
}


/* Paginator */
nav ul.pagination {
margin-top: 0;
}


/* Racks */
div.rack_header {
margin-left: 36px;
Expand Down

0 comments on commit 6af7403

Please sign in to comment.