mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
30 lines
463 B
JavaScript
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
|