-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
68 lines (68 loc) · 1.48 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
module.exports = {
purge: {
content: [
"./pages/**/*.tsx",
"./pages/**/*.css",
"./components/**/*.tsx",
"./container/**/*.tsx",
"./utils/**/*.ts",
"./utils/**/*.tsx",
],
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
zIndex: {
100: 100,
},
minWidth: {
20: "5rem",
24: "6rem",
},
maxWidth: {
24: "6rem",
},
maxHeight: {
"1/3": "33.333333%",
"2/3": "66.666666%",
"1/2": "50%",
},
lineHeight: {
button: "32px",
},
spacing: {
18: "4.5rem",
22: "5.5rem",
72: "18rem",
84: "21rem",
96: "24rem",
112: "30rem",
128: "40rem",
129: "52rem",
},
scale: {
101: "1.01",
102: "1.02",
},
fontFamily: {
title: ["Eczar", "serif"],
suez: ["Suez One", "serif"],
text: ["Nunito", "sans-serif"],
},
},
},
variants: {
extend: {
cursor: ["hover", "focus", "disabled"],
textColor: ["hover", "focus", "group-hover", "active"],
backgroundColor: ["hover", "focus", "disabled", "checked"],
cursor: ["hover", "focus", "disabled"],
borderColor: ["hover", "focus", "disabled"],
transform: ["hover", "focus"],
animation: ["hover", "focus", "group-hover"],
display: ["hover", "group-hover"],
opacity: ["disabled"],
},
},
plugins: [],
};