You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
582 B

@mixin mk-disable-scrollbar {
scrollbar-width: none;
-ms-overflow-style: none;
&::-webkit-scrollbar {
display: none;
}
}
@mixin mk-full-screen-menu {
width: 100vw;
z-index: 1002;
display: flex;
flex-direction: column;
transform: none !important;
position: fixed !important;
height: calc(100vh - #{$o-navbar-height});
max-height: calc(100vh - #{$o-navbar-height});
top: $o-navbar-height !important;
right: 0 !important;
left: 0 !important;
overflow-x: hidden;
overflow-y: auto;
box-shadow: none;
border: none;
}