-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.admin.config.js
44 lines (43 loc) · 1.18 KB
/
tailwind.admin.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
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
},
prefix: 'tw-',
plugins: [
require('@tailwindcss/ui'),
require('@tailwindcss/typography'),
],
purge: [
'./**/*.php',
'../tailword-child/**/*.php',
'./src/**/*.tsx',
],
theme: {
extend: {
maxHeight: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
'300': '300px',
'500': '500px'
},
maxWidth: {
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'300': '200px'
}
},
},
// variants: ['responsive', 'group-hover', 'disabled', 'hover', 'focus', 'active']
variants: {
extend: {
},
borderStyle: ['responsive', 'hover', 'focus'],
borderColor: ['responsive', 'hover', 'focus', 'active', 'group-hover'],
backgroundColor: ['responsive', 'hover', 'focus', 'active', 'group-hover', 'odd', 'even'],
borderWidth: ['responsive', 'first', 'hover', 'focus'],
},
}