Fix wrong min/max media queries for sidebar

The media query for the sidebar menu was incorrect. This patch
updates the correct min value when the sidebar should be displayed

Change-Id: If6c424843d559aba87caf19333e1b725bf24e4cc
Closes-bug: #1661422
(cherry picked from commit eada52a457)
This commit is contained in:
Eddie Ramirez 2017-02-03 00:34:03 +00:00 committed by Rob Cresswell
parent 100f77d895
commit 4686c02cc2
1 changed files with 3 additions and 3 deletions

View File

@ -22,12 +22,12 @@
z-index: 2;
transition: all 0.3s ease 0s;
@media (max-width: $screen-sm-min) {
@media (max-width: $screen-xs-max) {
&.on-screen {
visibility: visible;
opacity: 1;
}
}
}
}
#sidebar {
@ -39,7 +39,7 @@
display: block;
}
@media (max-width: $screen-sm-min) {
@media (max-width: $screen-xs-max) {
transition: all 0.3s ease 0s;
position: fixed;
top: $navbar-height;