Answer the question
In order to leave comments, you need to log in
Hiding the sidebar on small screens?
The gist is this:
.cd-side-nav {
position: absolute;
width: 100%;
background-color: #4f5a6e;
visibility: hidden;
opacity: 0;
&.cd-side-nav-visible {
opacity: 1;
visibility: visible;
}
@include MQ(S) { //экраны до 768px
position: fixed;
bottom: 0;
top: 0;
right: 0;
width: $sidebar-width-M;//100px
visibility: visible;
opacity: 1;
}
@include MQ(M) { //экраны до 992px
width: $sidebar-width-L; //250px
//наследование свойств от @include MQ(S)
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question