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,7 +22,7 @@
|
|||||||
z-index: 2;
|
z-index: 2;
|
||||||
transition: all 0.3s ease 0s;
|
transition: all 0.3s ease 0s;
|
||||||
|
|
||||||
@media (max-width: $screen-sm-min) {
|
@media (max-width: $screen-xs-max) {
|
||||||
&.on-screen {
|
&.on-screen {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
@ -39,7 +39,7 @@
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: $screen-sm-min) {
|
@media (max-width: $screen-xs-max) {
|
||||||
transition: all 0.3s ease 0s;
|
transition: all 0.3s ease 0s;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: $navbar-height;
|
top: $navbar-height;
|
||||||
|
Loading…
Reference in New Issue
Block a user