css issues
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 20s

This commit is contained in:
2025-11-12 13:56:33 -08:00
parent 25f454dc67
commit 01de220493

View File

@@ -3,30 +3,11 @@ import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import containerQueries from '@tailwindcss/container-queries';
/** @type {import('tailwindcss').Config} */
export default {
// Configure files to scan for Tailwind classes
content: [
"./index.html",
"./**/*.{js,ts,jsx,tsx}", // This single pattern recursively scans all folders for relevant files.
],
// Enable dark mode using a class
darkMode: 'class',
theme: {
extend: {
// By aliasing our brand colors to Tailwind's default palette, we get all the benefits
// of built-in colors, like hover states and opacity modifiers.
colors: {
'brand-primary': colors.green[500], // formerly #10B981
'brand-secondary': colors.green[600], // formerly #059669
'brand-dark': colors.green[700], // formerly #047857
'brand-light': colors.green[50], // formerly #ecfdf5
}
},
},
plugins: [
forms,
typography,
containerQueries,
"./App.tsx", // Be very specific for this test
],
// ... rest of your config
}