forked from craftcms/spoke-and-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (48 loc) · 1.21 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
module.exports = {
purge: {
enabled: (process.env.NODE_ENV === 'production'),
content: [
"./templates/**/*.{twig,html}",
"./src/js/**/*.{js}",
],
safelist: []
},
theme: {
container: {
center: true,
padding: '1.5rem',
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1440px',
},
extend: {
inset: {
'1/2': '50%',
},
spacing: {
'0.5': '0.125rem',
},
fontSize: {
xxs: '.625rem'
},
transitionProperty: {
height: 'height',
position: 'top, right, bottom, left',
spacing: 'margin, padding',
}
},
listStyleType: {
square: 'square',
}
},
variants: {
textColor: ['responsive', 'hover', 'focus', 'group-hover'],
transitionProperty: ['responsive', 'hover', 'group-hover', 'focus'],
translate: ['responsive', 'hover', 'focus', 'active', 'group-hover']
},
plugins: [],
}