Files
windmill/frontend/tailwind.config.cjs
Faton Ramadani 6b30969ae5 improve Flow UI (#297)
* Improve flow ui

* Finish reworking

* Fix formating

* Fix naviation

* Fix navigaion + adjust icon sizes

* Remove duplicate code

Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
2022-08-01 15:07:29 +02:00

41 lines
625 B
JavaScript

const config = {
content: [
'./src/**/*.{html,js,svelte,ts}',
"./node_modules/flowbite-svelte/**/*.{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'
},
height: {
'2/3': '66vh'
},
transitionProperty: {
'height': 'height'
}
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('flowbite/plugin')
],
darkMode: 'class',
}
module.exports = config