2021-01-17 21:01:44 +01:00
|
|
|
module.exports = {
|
|
|
|
purge: [
|
|
|
|
// './**/*.html',
|
|
|
|
// './**/*.js',
|
|
|
|
],
|
|
|
|
darkMode: false, // or 'media' or 'class'
|
|
|
|
theme: {
|
2021-01-21 04:48:52 +01:00
|
|
|
extend: {
|
|
|
|
// This does not work and I don't know why.
|
|
|
|
// Luckily index.css "@layer utilities" has the same effekt.
|
|
|
|
// maxHeight: {
|
|
|
|
// '65vh': '65vh',
|
|
|
|
// },
|
|
|
|
},
|
2021-01-17 21:01:44 +01:00
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|