24 lines
404 B
SCSS
24 lines
404 B
SCSS
@import "components/Header";
|
|
@import "components/BurgerMenu/Index";
|
|
@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
|
|
}
|
|
}
|