Spaces:
Build error
Build error
File size: 366 Bytes
db00358 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | @tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #0f172a;
--foreground: #f8fafc;
}
body {
color: var(--foreground);
background: var(--background);
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
} |