-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
40 lines (40 loc) · 999 Bytes
/
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
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
backgroundImage: () => ({
background: "url('/back.jpg')",
}),
height: () => ({
content: 'fit-content',
}),
minWidth: {
'1/4': '25%',
'3/8': '37.5%',
'1/2': '50%',
'3/4': '75%',
card: 'max(250px, 37.5%)',
60: '15rem',
26: '6.5rem',
},
minHeight: {
60: '15rem',
},
},
minHeight: {
0: '0',
'1/4': '25%',
'3/8': '37.5%',
'1/2': '50%',
'3/4': '75%',
card: 'max(250px, 37.5%)',
full: '100%',
screen: '100vh',
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/custom-forms')],
};