From 02973a1eb10759cf6a094c8072c8ad3ed86872de Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Sun, 10 May 2026 23:35:46 +0200 Subject: [PATCH] fix: correct path for app source files in globals.css --- packages/ui/src/styles/globals.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/styles/globals.css b/packages/ui/src/styles/globals.css index 61f586f68..efca9818d 100644 --- a/packages/ui/src/styles/globals.css +++ b/packages/ui/src/styles/globals.css @@ -7,7 +7,7 @@ @plugin "@tailwindcss/typography"; @source "../**/*.{ts,tsx}"; -@source "../../../apps/**/*.{ts,tsx}"; +@source "../../../../apps/**/*.{ts,tsx}"; @custom-variant dark (&:is(.dark *));