21 lines
220 B
CSS
21 lines
220 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body {
|
|
background: #020617;
|
|
color: #e5e7eb;
|
|
}
|
|
|
|
textarea, input, button {
|
|
font: inherit;
|
|
}
|
|
|
|
.prose {
|
|
max-width: none;
|
|
}
|