From 2ceccaec517813fb1f1cafd2c3872c7077570f44 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Mon, 26 Jan 2026 00:45:03 -0800 Subject: [PATCH] Refactor global styles to utilize Tailwind CSS directives - Replaced direct imports of Tailwind CSS with @tailwind directives for base, components, and utilities. - Improved organization of global styles for better maintainability and adherence to Tailwind CSS conventions. --- landing/src/app/globals.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/landing/src/app/globals.css b/landing/src/app/globals.css index c72a6f47..da5b7b99 100644 --- a/landing/src/app/globals.css +++ b/landing/src/app/globals.css @@ -1,5 +1,6 @@ -@import "tailwindcss/preflight"; -@import "tailwindcss"; +@tailwind base; +@tailwind components; +@tailwind utilities; @layer base { :root {