Website/app/frontend/styles/components/header.scss

18 lines
283 B
SCSS
Raw Normal View History

2024-07-14 19:53:55 +00:00
#header {
@apply flex h-12 p-2 gap-2 items-center;
@apply bg-gray-300 dark:bg-gray-700;
&__logo {
@apply h-full dark:hidden;
}
&__logo-dark {
@apply h-full hidden dark:block;
}
&__logo-text {
@apply text-lg text-center text-black dark:text-white;
}
}