Website/app/frontend/styles/components/BurgerMenu/Nav.scss

21 lines
299 B
SCSS
Raw Normal View History

2024-07-21 12:03:21 +00:00
.burger-menu-nav {
@apply text-lg app__text;
&__list {
@apply flex flex-col gap-2;
}
&__item {
@apply h-8;
}
&__link {
@apply flex p-1 gap-2 items-center;
@apply rounded-md hover:bg-gray-200 dark:hover:bg-gray-600;
}
&__icon {
@apply burger-menu__icon;
}
}