-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
61 lines (61 loc) · 1.36 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
53
54
55
56
57
58
59
60
61
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
animation: {
'arrow-bounce': 'abounce 1s infinite;',
'spin-slow': 'spin 3s linear infinite',
'animate-ping': 'ping 1s cubic-bezier(0, 0, 0.2, 1) infinite',
},
keyframes: {
abounce: {
'0%, 100%': {
transform: 'translateX(+15%)',
animationTimingFunction: 'cubic-bezier(0.8, 0, 1, 1)',
},
'50%': {
transform: 'translateX(0)',
animationTimingFunction: 'cubic-bezier(0, 0, 0.2, 1)',
},
},
ping: {
'75%, 100%': {
transform: 'scale(2)',
opacity: '0',
},
},
},
inset: {
23: '5.5rem',
},
minHeight: {
small: '2rem',
medium: '14rem',
big: '33rem',
},
maxHeight: {
small: '2rem',
medium: '14rem',
big: '33rem',
},
height: {
deps: '26rem',
big: '33rem',
},
maxWidth: {
small: '2rem',
medium: '14rem',
big: '33rem',
},
colors: {
primary: '#181b33',
blueGray: '#2e3748',
},
zIndex: {
'-10': '-10',
},
},
},
plugins: [require('@tailwindcss/forms')],
};