forked from ujjwalkirti/mmnct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (39 loc) · 913 Bytes
/
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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
"scale-in-center":
"scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both",
"slide-in-bck-center":
"slide-in-bck-center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both",
},
keyframes: {
"scale-in-center": {
"0%": {
transform: "scale(0)",
opacity: "1",
},
to: {
transform: "scale(1)",
opacity: "1",
},
},
"slide-in-bck-center": {
"0%": {
transform: "translateZ(600px)",
opacity: "0",
},
to: {
transform: "translateZ(0)",
opacity: "1",
},
},
},
},
},
plugins: [],
};