zappyzep/dashboard/tailwind.config.js

25 lines
385 B
JavaScript
Raw Normal View History

module.exports = {
2020-12-13 22:11:04 +02:00
important: true,
theme: {
2020-12-13 22:11:04 +02:00
extend: {
lineHeight: {
zero: '0'
},
flex: {
full: '0 0 100%',
flexible: '1 1 0'
}
2020-12-13 23:11:23 +02:00
},
screens: {
sm: '640px',
'until-sm': { max: '639px' },
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px'
2020-12-13 22:11:04 +02:00
}
},
variants: {},
plugins: []
}