Spaces:
Build error
Build error
Upload tailwind.config.ts with huggingface_hub
Browse files- tailwind.config.ts +30 -0
tailwind.config.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import type { Config } from "tailwindcss";
|
| 2 |
+
|
| 3 |
+
export default {
|
| 4 |
+
content: [
|
| 5 |
+
"./app/**/*.{ts,tsx}",
|
| 6 |
+
"./components/**/*.{ts,tsx}",
|
| 7 |
+
"./pages/**/*.{ts,tsx}",
|
| 8 |
+
],
|
| 9 |
+
theme: {
|
| 10 |
+
extend: {
|
| 11 |
+
animation: {
|
| 12 |
+
"accordion-down": "accordion-down 0.2s ease-out",
|
| 13 |
+
"accordion-up": "accordion-up 0.2s ease-out",
|
| 14 |
+
},
|
| 15 |
+
keyframes: {
|
| 16 |
+
"accordion-down": {
|
| 17 |
+
from: { height: "0" },
|
| 18 |
+
to: { height: "var(--radix-accordion-content-height)" },
|
| 19 |
+
},
|
| 20 |
+
"accordion-up": {
|
| 21 |
+
from: { height: "var(--radix-accordion-content-height)" },
|
| 22 |
+
to: { height: "0" },
|
| 23 |
+
},
|
| 24 |
+
},
|
| 25 |
+
},
|
| 26 |
+
},
|
| 27 |
+
plugins: [
|
| 28 |
+
require("tailwindcss-animate"),
|
| 29 |
+
],
|
| 30 |
+
} satisfies Config;
|