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:
parent
100f77d895
commit
4686c02cc2
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user