Skip to content

Commit

Permalink
Fix bug with Bootstrap project layout when shown at exactly 980px wide
Browse files Browse the repository at this point in the history
  • Loading branch information
FayCross committed Aug 3, 2021
1 parent 1b427cb commit ce1a1b8
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -65,7 +65,7 @@
display: inherit !important;
}

@media (min-width: 768px) and (max-width: 979px) {
@media (min-width: 768px) and (max-width: 980px) {
.hidden-desktop {
display: inherit !important;
}
Expand Down Expand Up @@ -458,7 +458,7 @@
}
}

@media (min-width: 768px) and (max-width: 979px) {
@media (min-width: 768px) and (max-width: 980px) {
.row {
margin-left: -20px;
*zoom: 1;
Expand Down Expand Up @@ -949,7 +949,7 @@
}
}

@media (max-width: 979px) {
@media (max-width: 980px) {
body {
padding-top: 0;
}
Expand Down Expand Up @@ -1101,7 +1101,7 @@
}
}

@media (min-width: 980px) {
@media (min-width: 981px) {
.nav-collapse.collapse {
height: auto !important;
overflow: visible !important;
Expand Down

0 comments on commit ce1a1b8

Please sign in to comment.