-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js.bak
54 lines (54 loc) · 1001 Bytes
/
tailwind.config.js.bak
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 = {
theme: {
inset: {
"0": 0,
auto: "auto",
full: "100%",
"1000": "1000px",
"-2-rem": "-2rem",
},
borderColor: theme => ({
...theme("colors"),
lightblue: "#1a9ec5",
}),
fontSize: {
xs: ".75rem",
sm: ".875rem",
base: "1rem",
lg: "1.125rem",
xl: "1.25rem",
"3xl": "1.875rem",
"4xl": "2.25rem",
"2xl": "1.5rem",
"5xl": "3rem",
"6xl": "4rem",
"7xl": "5rem",
"8xl": "6rem",
"9xl": "7rem",
"10xl": "8rem",
"11xl": "9rem",
},
minWidth: {
"0": "0",
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
full: "100%",
},
borderWidth: {
default: "1px",
"0": "0",
"2": "2px",
"3": "3px",
"4": "4px",
"6": "6px",
"8": "8px",
"10": "10px",
},
extend: {},
},
variants: {
borderWidth: ["responsive", "last", "hover", "focus"],
},
plugins: [],
}