mapcomplete/tailwind.config.js
2021-01-24 22:22:03 +01:00

25 lines
422 B
JavaScript

module.exports = {
purge: [
// './**/*.html',
// './**/*.js',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
maxHeight: {
'65vh': '65vh',
'20vh': '20vh',
},
screens: {
'landscape': { 'raw': '(max-height: 600px) and (min-width: 600px)' },
},
},
},
variants: {
extend: {
ringColor: ['hover'],
}
},
plugins: [],
}