app_totito_next/app/globals.css

28 lines
414 B
CSS
Raw Normal View History

2024-09-06 19:35:13 -06:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
2024-09-08 16:29:17 -06:00
--foreground: #ffffff;
2024-09-06 19:35:13 -06:00
}
@media (prefers-color-scheme: dark) {
:root {
2024-09-08 16:29:17 -06:00
--background: #ededed;
2024-09-06 19:35:13 -06:00
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}