Website/app/frontend/styles/app.scss
2024-07-14 21:53:28 +02:00

24 lines
399 B
SCSS

@import "components/header";
@import "components/burger-menu";
@tailwind base;
@tailwind components;
@tailwind utilities;
hr {
@apply h-px my-2 border-0;
@apply bg-gray-300 dark:bg-gray-500;
}
.app {
&__text {
@apply text-gray-900 dark:text-gray-100
}
&__text-bold {
@apply app__text font-bold
}
&__text-light {
@apply text-gray-500 dark:text-gray-300 font-light
}
}