Update src/app/globals.css

This commit is contained in:
2026-03-04 12:42:34 +00:00
parent bc788e02f3
commit 1e81b04ac7

View File

@@ -1,5 +1,14 @@
@import "tailwindcss";
@import "./styles/variables.css";
@import "./styles/theme.css";
@import "./styles/utilities.css";
@import "./styles/base.css";
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
font-feature-settings: "rlig" 1, "calt" 1;
}
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}