2020-05-15 00:29:21 +00:00
|
|
|
const {variants} = require('tailwindcss/defaultConfig')
|
|
|
|
const {fontFamily, spacing} = require('tailwindcss/defaultTheme')
|
|
|
|
|
2020-04-10 09:10:54 +00:00
|
|
|
module.exports = {
|
2020-05-17 09:18:33 +00:00
|
|
|
important: true,
|
2020-05-19 16:45:52 +00:00
|
|
|
purge: {
|
|
|
|
content: [
|
|
|
|
'templates/**/*.twig',
|
|
|
|
|
|
|
|
// Include any classes used within config (e.g. within views).
|
|
|
|
'../../../../config/**/*.yml'
|
|
|
|
],
|
|
|
|
options: {
|
|
|
|
whitelist: [],
|
|
|
|
}
|
|
|
|
},
|
2020-04-10 09:10:54 +00:00
|
|
|
theme: {
|
2020-05-15 00:29:21 +00:00
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
inherit: 'inherit'
|
|
|
|
},
|
|
|
|
fontFamily: {
|
|
|
|
mono: ['Roboto Mono', ...fontFamily.mono]
|
|
|
|
},
|
|
|
|
spacing: {
|
|
|
|
'2px': '2px'
|
|
|
|
},
|
|
|
|
borderWidth: {
|
|
|
|
3: '3px'
|
|
|
|
},
|
|
|
|
width: {
|
|
|
|
96: '24rem'
|
|
|
|
}
|
|
|
|
}
|
2020-04-10 09:10:54 +00:00
|
|
|
},
|
2020-05-15 00:29:21 +00:00
|
|
|
corePlugins: {
|
|
|
|
container: false
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
// require('tailwindcss-skip-link')()
|
|
|
|
],
|
|
|
|
variants: {
|
|
|
|
borderStyle: [...variants.borderStyle, 'hover', 'focus'],
|
|
|
|
borderWidth: [...variants.borderStyle, 'hover', 'focus']
|
|
|
|
}
|
2020-04-10 09:10:54 +00:00
|
|
|
}
|