2eecdfb9de
But this seems to be non-working, see https://github.com/pietervdvn/MapComplete/issues/200
24 lines
422 B
JavaScript
24 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: [],
|
|
}
|