00Boobs00 commited on
Commit
11e2fc9
·
verified ·
1 Parent(s): 7b028da

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. 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: [],