deepsite-ai-coding / tailwind.config.ts
likhonsheikh's picture
Upload tailwind.config.ts with huggingface_hub
c66bb27 verified
raw
history blame contribute delete
723 Bytes
import type { Config } from "tailwindcss";
export default {
content: [
"./app/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./pages/**/*.{ts,tsx}",
],
theme: {
extend: {
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
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" },
},
},
},
},
plugins: [
require("tailwindcss-animate"),
],
} satisfies Config;