-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.21 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 = {
theme: {
fontFamily: {
body: ['Avenir', 'sans-serif'],
},
extend: {
height: {
'100': '100px',
'200': '200px',
'300': '300px',
'400': '400px',
'500': '500px',
'600': '600px',
'700': '700px',
'800': '800px',
},
spacing: {
'72': '18rem',
'84': '21rem',
'96': '24rem',
'108': '30rem',
'112': '32rem',
'120': '36rem',
},
minHeight: {
'0': '0',
'1': '100px',
'2': '200px',
'3': '300px',
'4': '400px',
'5': '500px',
'6': '600px',
'7': '700px',
'8': '800px',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
},
maxHeight: {
'0': '0',
'1': '100px',
'2': '200px',
'3': '300px',
'4': '400px',
'5': '500px',
'6': '600px',
'7': '700px',
'8': '800px',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
},
},
},
variants: {
margin: ['responsive', 'last'],
maxHeight: ['responsive', 'hover', 'focus'],
},
};