MapComplete/tailwind.config.js
Tobias 397a4414f3 Move custom max-height-version to Config
As it turns out, the config does work once you restart the server … 🤦
2021-01-24 22:21:28 +01:00

21 lines
318 B
JavaScript

module.exports = {
purge: [
// './**/*.html',
// './**/*.js',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
maxHeight: {
'65vh': '65vh',
'20vh': '20vh',
},
},
},
variants: {
extend: {
ringColor: ['hover'],
}
},
plugins: [],
}