Spaces:
Runtime error
Runtime error
Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +23 -0
tailwind.config.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('tailwindcss').Config} */
|
| 2 |
+
module.exports = {
|
| 3 |
+
content: [
|
| 4 |
+
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
| 5 |
+
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
| 6 |
+
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
| 7 |
+
],
|
| 8 |
+
theme: {
|
| 9 |
+
extend: {
|
| 10 |
+
animation: {
|
| 11 |
+
'fade-in': 'fadeIn 0.3s ease-in-out',
|
| 12 |
+
'pulse-slow': 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
| 13 |
+
},
|
| 14 |
+
keyframes: {
|
| 15 |
+
fadeIn: {
|
| 16 |
+
'0%': { opacity: '0', transform: 'translateY(10px)' },
|
| 17 |
+
'100%': { opacity: '1', transform: 'translateY(0)' },
|
| 18 |
+
},
|
| 19 |
+
},
|
| 20 |
+
},
|
| 21 |
+
},
|
| 22 |
+
plugins: [],
|
| 23 |
+
}
|