-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 909 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (42 loc) · 909 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
33
34
35
36
37
38
39
40
41
42
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
animation: {
'shimmer': 'shimmer 2s ease-in-out infinite alternate',
'pulse': 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'spin': 'spin 1s linear infinite',
},
keyframes: {
shimmer: {
'0%': {
transform: 'translateX(-100%)',
},
'100%': {
transform: 'translateX(100%)',
},
},
pulse: {
'0%, 100%': {
opacity: '1',
},
'50%': {
opacity: '0.8',
},
},
spin: {
'0%': {
transform: 'rotate(0deg)',
},
'100%': {
transform: 'rotate(360deg)',
},
},
},
},
},
plugins: [],
};