menu dropdown fix on mobile (used to slide from left to right, now slides down)

This commit is contained in:
Elisabeth Dickinson 2021-04-21 09:34:23 +02:00
parent 4eafb84a26
commit 0b254fca1a

View File

@ -174,21 +174,19 @@ header.o_main_header{
//------------------------------------------------------------------------------
.o_side_nav {
width: 100vw;
width: 100%;
height: calc(100vh - #{$o-header-mobile-height});
overflow-y: auto;
position: fixed;
top: $o-header-mobile-height;
left: -100%;
top: -100%;
left:0;
&.show {
left:0;
width: 100%;
top: $o-header-mobile-height;
}
@include media-breakpoint-up(lg) {
width: $o-side-nav-width;
height: calc(100vh - #{$o-header-height});
top: $o-header-height;
left:0;
padding-top: 2rem;
padding-left: 3rem;
}