tailwind config artefacts cleaned up

This commit is contained in:
DaKheera47
2026-01-22 20:04:08 +00:00
parent 7b5afd25d1
commit f60ce5db4f
6 changed files with 221 additions and 336 deletions
-19
View File
@@ -3,24 +3,5 @@ import type { Config } from "tailwindcss";
export default {
darkMode: "class",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
},
},
plugins: [],
} satisfies Config;