13 lines
162 B
CSS
13 lines
162 B
CSS
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|
||
|
|
|
||
|
|
@layer base {
|
||
|
|
* {
|
||
|
|
@apply border-border;
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
@apply bg-zinc-950 text-zinc-50;
|
||
|
|
}
|
||
|
|
}
|