29 lines
530 B
SCSS
29 lines
530 B
SCSS
/* Start Closed-Menu Styles */
|
|
[data-vertical-style="closed"] {
|
|
@media screen and (min-width: 992px) {
|
|
&[data-toggled="close-menu-close"] {
|
|
.app-sidebar {
|
|
@apply hidden;
|
|
}
|
|
.content {
|
|
@apply ms-0!;
|
|
}
|
|
.app-header {
|
|
@apply ps-0!;
|
|
}
|
|
}
|
|
&[data-toggled="close-menu-open"] {
|
|
.app-sidebar {
|
|
@apply block;
|
|
}
|
|
.content {
|
|
@apply ms-64;
|
|
}
|
|
.app-header {
|
|
@apply ps-64;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/* End Closed-Menu Styles */
|