28 lines
520 B
SCSS
28 lines
520 B
SCSS
|
@import "Nav";
|
||
|
@import "Login";
|
||
|
@import "User";
|
||
|
|
||
|
.burger-menu {
|
||
|
@apply fixed top-0 right-0 h-screen overflow-y-auto z-40;
|
||
|
@apply flex flex-col p-2 gap-2 w-64;
|
||
|
@apply bg-gray-200 dark:bg-gray-600;
|
||
|
|
||
|
&__button-open {
|
||
|
@apply ml-auto h-full aspect-square;
|
||
|
}
|
||
|
|
||
|
&__button-close {
|
||
|
@apply h-8 w-8 absolute right-2 aspect-square;
|
||
|
}
|
||
|
|
||
|
&__icon {
|
||
|
@apply text-gray-900 dark:text-gray-100;
|
||
|
@apply h-6 w-6;
|
||
|
}
|
||
|
|
||
|
&__icon-full {
|
||
|
@apply text-gray-900 dark:text-gray-100;
|
||
|
@apply h-full w-full;
|
||
|
}
|
||
|
}
|