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.
This commit is contained in:
Jamie Pine
2026-01-26 00:45:03 -08:00
parent 551abc9856
commit 2ceccaec51
+3 -2
View File
@@ -1,5 +1,6 @@
@import "tailwindcss/preflight";
@import "tailwindcss";
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {