You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
469 B
SCSS
30 lines
469 B
SCSS
|
2 weeks ago
|
.active-submenu {
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
.hidden-scroll {
|
||
|
|
overflow-y: auto;
|
||
|
|
-ms-overflow-style: none;
|
||
|
|
scrollbar-width: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hidden-scroll::-webkit-scrollbar {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
#sidebar-menu {
|
||
|
|
height: calc(100vh - 60px);
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 768px) {
|
||
|
|
#sidebar-menu {
|
||
|
|
height: calc(100vh - 100px);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
.sub-menu {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.sub-menu[aria-expanded="true"] {
|
||
|
|
display:block;
|
||
|
|
}
|
||
|
|
|