-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
52 lines (45 loc) · 1.08 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
47
48
49
50
51
52
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
keyframes: {
wiggle: {
"0%, 100%": { transform: "rotate(-10deg)" },
"50%": { transform: "rotate(10deg)" },
},
moveup: {
"0%": {
bottom: "3rem",
rotate: "5deg",
},
"100%": {
bottom: "70rem",
visibility: "visible",
rotate: "0deg",
},
},
moveupfast: {
"0%": {
bottom: "3rem",
rotate: "5deg",
},
"100%": {
bottom: "70rem",
visibility: "visible",
rotate: "0deg",
},
},
},
animation: {
wiggle: "wiggle 1s ease-in-out infinite",
moveup: "2s moveup 1s ease-in 3",
moveupfast: "0.5s moveupfast 1s ease-in 7",
},
},
},
variants: {
extend: {},
},
plugins: [],
};