-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
78 lines (75 loc) · 2.31 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
module.exports = {
theme: {
inset: {
"0": "0rem",
"29": "6.25rem",
"32": "8rem",
"36": "9rem",
"44": "11rem",
"62": "15.5rem",
"78": "19.5rem"
},
purge: [
"./public/index.ejs"
],
extend: {
screens: {
'xl': {'max': '1279px'},
// => @media (max-width: 1279px) { ... }
'lg': {'max': '1023px'},
// => @media (max-width: 1023px) { ... }
'md': {'max': '767px'},
// => @media (max-width: 767px) { ... }
'sm': {'max': '639px'},
// => @media (max-width: 639px) { ... }
},
maxWidth: {
"7xl": "80rem"
},
colors: {
"blue-background": "#baeff3",
"gray-background": "#eef1f4",
"green-button": "#00b89d",
"green-hover": "#00a38b",
"blue-container": "#effafd",
"cerulean-blue": "#294ccb",
"blue-button": "#005ff7",
"blue-hover": "#0049BE",
"green-verified": "#058c42",
"gray-label": "#495057"
},
fontFamily: {
primary: ["Open Sans", "sans-serif"]
},
backgroundImage: theme => ({
"usps-label": "url('../../images/usps-label.png')"
}),
height: {
smallLabelHeight: "32rem",
labelHeight: "40rem"
},
width: {
smallLabelWidth: "24rem",
labelWidth: "30rem"
},
gridTemplateColumns: {
"address": "55% 10% auto",
"address-sm": "45% 15% auto",
"rate-estimate": "50% 25% 25%"
},
spacing: {
'12px': '12px',
'16px': '16px',
'20px': '20px',
'24px': '24px',
'28px': '28px',
'32px': '32px',
'40px': '40px',
'54px': '54px',
'64px': '64px',
'128px': '128px',
'256px': '256px'
}
}
}
}