22 lines
365 B
SCSS
22 lines
365 B
SCSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
* {
|
|
@apply scroll-m-16 leading-8;
|
|
}
|
|
|
|
html {
|
|
@apply bg-dark-ui-bg font-noto-sans text-dark-text-default;
|
|
}
|
|
|
|
body {
|
|
@apply m-0 flex h-full min-h-screen w-full scroll-m-16 flex-col items-center p-0;
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
list-style: circle;
|
|
padding-left: 2.5rem;
|
|
list-style-position: inside;
|
|
}
|