From c943530b6e6f1e817e8c99452affc6d7b36eac57 Mon Sep 17 00:00:00 2001 From: Jewgeni Lewash Date: Thu, 12 Sep 2024 15:19:08 +0200 Subject: [PATCH] chore: update tailwind.config.mjs with new screen sizes also for heights --- tailwind.config.mjs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tailwind.config.mjs b/tailwind.config.mjs index f9f4569..33cdaed 100644 --- a/tailwind.config.mjs +++ b/tailwind.config.mjs @@ -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,