module.exports = {
purge: [
'./src/**/*.html',
'./src/**/*.vue',
'./src/**/*.jsx'
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
zIndex: {
'max': 999999
},
width: {
'23/24': '95.8333%',
'800px': '800px'
},
inset: {
'400pxh': 'calc(50% - 400px)'
}
}
},
variants: {
extend: {}
},
plugins: []
}