forked from MapComplete/MapComplete
4068931bba
- remove custom styles - add new button styles based on Tailwind classes using @apply - extend config to allow hover:ring-blue-200 and such - update the js-files to use new classes - Only unsure about the `.review-form .save-non-active`, this might need additional Tailwind helper classes in this specific situation. Don't know where it shows up, so could not test.
22 lines
420 B
JavaScript
22 lines
420 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: {
|
|
ringColor: ['hover'],
|
|
}
|
|
},
|
|
plugins: [],
|
|
}
|