-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 883 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (32 loc) · 883 Bytes
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
module.exports = {
mode: "jit",
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
purge: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
keyframes: {
flicker: {
"0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100%": {
opacity: 0.99,
filter:
"drop-shadow(0 0 1px rgba(252, 211, 77)) drop-shadow(0 0 15px rgba(245, 158, 11)) drop-shadow(0 0 1px rgba(252, 211, 77))",
},
"20%, 21.999%, 63%, 63.999%, 65%, 69.999%": {
opacity: 0.4,
filter: "none",
},
},
animation: {
flicker: "flicker 3s linear infinite",
},
},
minWidth: (theme) => theme("width"),
maxWidth: (theme) => theme("width"),
minHeight: (theme) => theme("height"),
maxHeight: (theme) => theme("height"),
},
},
plugins: [],
}