13 lines
212 B
CSS
13 lines
212 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
html {
|
|
font-family: var(--font-inter), system-ui, sans-serif;
|
|
}
|
|
|
|
body {
|
|
@apply bg-black-900 text-gray-100 antialiased;
|
|
}
|
|
} |