TerminalTinder/app/globals.css

33 lines
481 B
CSS
Raw Normal View History

2024-09-09 09:50:12 -04:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
2024-09-09 11:51:54 -04:00
font-family: var(--font-geist-sans), Arial, sans-serif;
2024-09-09 15:31:19 -04:00
overflow: hidden;
2024-09-09 09:50:12 -04:00
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
2024-09-09 11:51:54 -04:00
.pt-full {
padding-top: 100%;
}