-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 843 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (44 loc) · 843 Bytes
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
module.exports = {
purge: [
'./components/**/*.{js,jsx,ts,tsx}',
'./pages/**/*.{js,jsx,ts,tsx}',
'./styles/**/*.{css}',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
height: {
84: '21rem',
92: '23rem',
100: '25rem',
104: '26rem',
120: '30rem',
128: '32rem',
132: '33rem',
140: '35rem',
160: '40rem',
164: '41rem',
176: '44rem',
260: '65rem',
},
minHeight: {
176: '44rem',
},
maxHeight: {
128: '32rem',
140: '35rem',
160: '40rem',
'1/2': '50%',
'3/4': '75%',
},
width: {},
zIndex: {
'-10': -10,
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/line-clamp')],
}