18 lines
308 B
CSS
18 lines
308 B
CSS
@import "tailwindcss";
|
|
|
|
@source "../..";
|
|
|
|
@theme static {
|
|
--font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
@layer base {
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
font-family: var(--font-sans);
|
|
background: #020617;
|
|
color: #e2e8f0;
|
|
}
|
|
}
|