Fix Tailwind CSS v4 styling by migrating globals.css to new @import format

This commit is contained in:
TheMaddax 2025-12-15 08:43:33 -07:00
parent 2f42fb8fc3
commit d4d646104e
2 changed files with 8 additions and 4 deletions

2
next-env.d.ts vendored
View file

@ -1,6 +1,6 @@
/// <reference types="next" /> /// <reference types="next" />
/// <reference types="next/image-types/global" /> /// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts"; import "./.next/dev/types/routes.d.ts";
// NOTE: This file should not be edited // NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View file

@ -1,3 +1,7 @@
@tailwind base; @import "tailwindcss";
@tailwind components;
@tailwind utilities; @theme {
--color-blue-800: #1e40af;
--color-blue-900: #1e3a8a;
--color-gold-400: #fbbf24;
}