chore: update tailwind.config.mjs with new screen sizes also for heights

This commit is contained in:
Jewgeni Lewash 2024-09-12 15:19:08 +02:00
parent 9df6466c39
commit c943530b6e

View File

@ -5,10 +5,17 @@ export default {
prefix: '',
theme: {
screens: {
xs: { max: '600px' },
sm: '600px',
md: '840px',
lg: '1200px',
xl: '1600px',
'h-xs': { raw: '(max-height: 600px)' },
'h-sm': { raw: '(min-height: 600px)' },
'h-md': { raw: '(min-height: 840px)' },
'h-lg': { raw: '(min-height: 1200px)' },
'h-xl': { raw: '(min-height: 1600px)' },
},
container: {
center: true,