-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
51 lines (51 loc) · 1.34 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
module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
zIndex: {
'-10': '-10'
},
minWidth: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
'40': '40px',
'56': '56px',
'100': '100px',
'168': '168px',
'248': '248px'
},
minHeight: {
'list': 'calc(100vh - 117px)',
'mail-list': 'calc(100vh - 145px)'
},
backgroundImage: theme => ({
'inbox': "url('/inbox.png')",
'starred': "url('/starred.png')",
'important': "url('/important.png')",
'sent': "url('/sent.png')",
'spam': "url('/spam.png')",
'drafts': "url('/drafts.png')",
'trash': "url('/trash.png')",
'active-important': "url('/active-important.png')",
'active-star': "url('/active-star.png')",
'inactive-important': "url('/inactive-important.png')",
'inactive-star': "url('/inactive-star.png')",
'background': "url('/background.jpeg')"
}),
flex: {
'basis-56': '0 56px',
'basis-168': '0 168px'
}
},
},
variants: {
extend: {
display: ['group-hover']
},
},
plugins: [],
}