32 lines
407 B
SCSS
32 lines
407 B
SCSS
@use '../../css/common.scss' as *;
|
|
|
|
.mobileMenuModal {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
padding: 0;
|
|
opacity: 1;
|
|
display: none;
|
|
|
|
@include mid-break {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.contentContainer {
|
|
padding: 20px;
|
|
}
|
|
|
|
.mobileMenuItems {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.menuItem {
|
|
@extend %h4;
|
|
margin-top: 0;
|
|
}
|