From 1e81b04ac73f2e1e0c3e9ecb119f16fceedd745a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:42:34 +0000 Subject: [PATCH] Update src/app/globals.css --- src/app/globals.css | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index f624db2..288fc5c 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -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; + } +}