-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (46 loc) · 1.15 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/app/**/*.{js,ts,jsx,tsx}'
],
darkMode: 'class',
theme: {
extend: {
keyframes: {
'scale-in-center-open': {
'0%': {
'-webkit-transform': 'scale(0)',
transform: 'scale(0)',
opacity: 1
},
'100%': {
'-webkit-transform': 'scale(1)',
transform: 'scale(1)',
opacity: 1
}
},
'scale-in-center-close': {
'0%': {
'-webkit-transform': 'scale(1)',
transform: 'scale(1)',
opacity: 1
},
'100%': {
'-webkit-transform': 'scale(0)',
transform: 'scale(0)',
opacity: 0
}
}
},
animation: {
'scale-in-center-open':
'scale-in-center-open 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both',
'scale-in-center-close':
'scale-in-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both'
}
}
},
plugins: []
}