43 lines
644 B
JavaScript
43 lines
644 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%',
|
|
'3/4': '75%'
|
|
|
|
},
|
|
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
|