Spaces:
Build error
Build error
Upload tailwind.config.js with huggingface_hub
Browse files- tailwind.config.js +14 -0
tailwind.config.js
CHANGED
|
@@ -29,6 +29,20 @@ module.exports = {
|
|
| 29 |
fontFamily: {
|
| 30 |
sans: ['Inter', 'sans-serif'],
|
| 31 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
},
|
| 33 |
},
|
| 34 |
plugins: [],
|
|
|
|
| 29 |
fontFamily: {
|
| 30 |
sans: ['Inter', 'sans-serif'],
|
| 31 |
},
|
| 32 |
+
animation: {
|
| 33 |
+
'fade-in': 'fadeIn 0.5s ease-out',
|
| 34 |
+
'slide-up': 'slideUp 0.5s ease-out',
|
| 35 |
+
},
|
| 36 |
+
keyframes: {
|
| 37 |
+
fadeIn: {
|
| 38 |
+
'0%': { opacity: '0' },
|
| 39 |
+
'100%': { opacity: '1' },
|
| 40 |
+
},
|
| 41 |
+
slideUp: {
|
| 42 |
+
'0%': { transform: 'translateY(10px)', opacity: '0' },
|
| 43 |
+
'100%': { transform: 'translateY(0)', opacity: '1' },
|
| 44 |
+
}
|
| 45 |
+
}
|
| 46 |
},
|
| 47 |
},
|
| 48 |
plugins: [],
|