-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 961 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (44 loc) · 961 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
43
44
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
keyframes: {
bounce: {
'0%, 100%': {
transform: 'translateY(-15%)',
'animation-timing-function': 'cubic-bezier(0.8,0,1,1)',
},
'50%': {
transform: 'none',
'animation-timing-function': 'cubic-bezier(0,0,0.2,1)',
},
},
},
extend: {
colors: {
'picker-orange': '#f45314',
'picker-yellow': '#ffcc33',
},
backgroundImage: {
'top-bg1': "url('/img/top-bg1.png')",
'top-bg2': "url('/img/top-bg2.png')",
},
screens: {
tall: { raw: '(min-height: 750px)' },
},
flex: {
30: '1 1 30%',
},
keyframes: {
slide: {
'100%': {
top: '-200px',
},
},
},
animation: {
slide: 'slide 4.2s steps(5) infinite',
},
},
},
plugins: [],
};