10 lines
144 B
CSS
10 lines
144 B
CSS
|
@import "tailwindcss";
|
||
|
|
||
|
:root {
|
||
|
font-family: monospace;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
@apply bg-stone-200 dark:bg-stone-900 text-stone-800 dark:text-stone-300;
|
||
|
}
|