3f34e288db
I need this to refactor the featureinfobox and sub-classes. Ideally we could add this class via tailwind.config.js but for some reason it does not work; the class does not appear in the index.css file. As a workaround I added it differently, but still we should probably figure out why the config file does not work as expeced.
20 lines
388 B
JavaScript
20 lines
388 B
JavaScript
module.exports = {
|
|
purge: [
|
|
// './**/*.html',
|
|
// './**/*.js',
|
|
],
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
// This does not work and I don't know why.
|
|
// Luckily index.css "@layer utilities" has the same effekt.
|
|
// maxHeight: {
|
|
// '65vh': '65vh',
|
|
// },
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|