Files
windmill/frontend/tailwind.config.cjs
T
2022-07-21 23:58:32 +02:00

30 lines
463 B
JavaScript

const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
maxHeight: {
'1/2': '50vh',
'2/3': '66vh',
'3/4': '75vh'
},
minWidth: {
'1/4': '25%',
'1/3': '33%',
'1/2': '50%',
'2/3': '66%'
},
minHeight: {
'1/2': '50vh'
},
transitionProperty: {
'height': 'height'
}
}
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')]
}
module.exports = config