Website/app/frontend/styles/app.scss

25 lines
399 B
SCSS
Raw Normal View History

2024-07-14 19:53:28 +00:00
@import "components/header";
@import "components/burger-menu";
2024-07-14 14:26:52 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-07-14 19:53:28 +00:00
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
}
}