-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (52 loc) · 1.03 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
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
theme: {
fontFamily: { rubik: ["Rubik", "system-ui"] },
screens: {
xsm: "400px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
minWidth: {
0: "0",
150: "150px",
200: "260px",
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
full: "100%",
},
extend: {
colors: {
blueBlack: "#2b2b2b",
colorgray: "#969696",
},
fontSize: {
"9xl": "9rem",
small: "0.5rem",
},
maxWidth: {
10: "7rem",
},
gridTemplateColumns: {
// Simple 16 column grid
"2days": "repeat(2, minmax(0, 120px))",
"3days": "repeat(3, minmax(0, 120px))",
},
gridTemplateRows: {
// Simple 8 row grid
2: "repeat(2, minmax(0, 160px))",
},
gridAutoRows: {
min: "minmax(0, 160px)",
},
},
},
variants: {},
plugins: [],
};