-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
37 lines (37 loc) · 1.06 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
module.exports = {
purge: [
'./src/**/*.html',
'./src/**/*.tsx',
],
theme: {
extend: {},
screens: {
'xl': { 'max': '1920px' },
// => @media (max-width: 1920px) { ... }
'lg': { 'max': '1280px' },
// => @media (max-width: 1280px) { ... }
'md': { 'max': '960px' },
// => @media (max-width: 960px) { ... }
'sm': { 'max': '600px' },
// => @media (max-width: 600px) { ... }
'xs': { 'max': '414px' }
},
},
variants: {
textColor: ['hover', 'group-hover'],
opacity: ['hover', 'group-hover'],
transform: ['group-hover'],
translate: ['group-hover'],
borderWidth: ['responsive', 'hover'],
backgroundOpacity: ['responsive', 'hover', 'focus', 'group-hover'],
display: ['responsive', 'group-hover'],
},
plugins: [],
corePlugins: {
// outline: false,
},
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
}