-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
56 lines (53 loc) · 1.6 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
module.exports = {
theme: {
fontFamily: {
'sans': ['"Open Sans"','system-ui','-apple-system','BlinkMacSystemFont','"Segoe UI"','Roboto','"Helvetica Neue"','Arial','"Noto Sans"','sans-serif','"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],
'serif': ['"PT Serif"','Georgia', 'Cambria', '"Times New Roman"', 'Times', 'serif'],
'mono': ['Menlo', 'Monaco', 'Consolas', '"Liberation Mono"', '"Courier New"', 'monospace'],
},
screens: {
'xl': {'max': '1090px'},
// => @media (max-width: 1279px) { ... }
'lg': {'max': '770px'},
// => @media (max-width: 1023px) { ... }
'md': {'max': '590px'},
// => @media (max-width: 767px) { ... }
'sm': {'max': '639px'},
// => @media (max-width: 639px) { ... }
},
extend: {
spacing: {
"72": "360px",
"84": "200px"
}
},
inset: {
"0": 0,
auto: "auto",
"1/2": "5px"
},
left: {
"0": "0rem",
"-10": "-10px"
},
zIndex: {
"-10": -10,
"0": 0,
"10": 10,
"20": 20,
"30": 30,
"40": 40,
"50": 50,
"25": 25,
"75": 75,
"100": 100,
auto: "auto"
}
},
variants: {
flex: ["responsive", "hover", "focus", "group-hover"]
},
plugins: [
require('@tailwindcss/custom-forms')
]
}