Jayantsharma46 commited on
Commit
db2f784
·
verified ·
1 Parent(s): 91b857b

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +26 -0
tailwind.config.js ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ],
7
+ theme: {
8
+ extend: {
9
+ animation: {
10
+ 'fade-in': 'fadeIn 0.3s ease-out',
11
+ 'scale-in': 'scaleIn 0.2s ease-out',
12
+ },
13
+ keyframes: {
14
+ fadeIn: {
15
+ '0%': { opacity: '0' },
16
+ '100%': { opacity: '1' },
17
+ },
18
+ scaleIn: {
19
+ '0%': { transform: 'scale(0.95)', opacity: '0' },
20
+ '100%': { transform: 'scale(1)', opacity: '1' },
21
+ },
22
+ },
23
+ },
24
+ },
25
+ plugins: [],
26
+ }