forked from simplygoodwork/craft-donkeytail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 949 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
41
// https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
module.exports = {
theme: {
container: {
center: true,
padding: '1rem',
},
boxShadow: theme => ({
outline: `inset 0 0 1px 1px ${theme('colors.blue.600')}`,
}),
extend: {
screens: {
'2xl': '1600px',
},
spacing: {
full: '100%',
},
lineHeight: {
0: '0',
},
borderWidth: {
3: '3px',
},
opacity: {
90: '0.9',
},
},
},
variants: {
backgroundColor: ['responsive', 'hover', 'focus', 'important'],
flexWrap: ['responsive', 'hover', 'focus', 'important'],
fontSize: ['responsive', 'important'],
padding: ['responsive', 'important'],
margin: ['responsive', 'important'],
},
plugins: [require('tailwindcss-important')()],
purge: {
content: ['./src/**/*.vue', './src/templates/**/*.twig'],
},
}