From 4bd8aa63bf857a15785363c90d165fc11489776d Mon Sep 17 00:00:00 2001 From: Mike Fortman Date: Wed, 9 Jul 2025 16:20:19 -0500 Subject: [PATCH] fix: fix max height of template getting started cards (#8964) * fix max height * tiny height change --- src/frontend/src/modals/baseModal/helpers/switch-case-size.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/modals/baseModal/helpers/switch-case-size.ts b/src/frontend/src/modals/baseModal/helpers/switch-case-size.ts index 25893898e..a27d85623 100644 --- a/src/frontend/src/modals/baseModal/helpers/switch-case-size.ts +++ b/src/frontend/src/modals/baseModal/helpers/switch-case-size.ts @@ -57,7 +57,7 @@ export const switchCaseModalSize = (size: string) => { case "templates": minWidth = "w-[97vw] max-w-[1200px]"; height = - "min-h-[500px] h-[90vh] md:h-[85vh] lg:h-[80vh] xl:h-[70vh] max-h-[90vh]"; + "min-h-[500px] h-[90vh] md:h-[85vh] lg:h-[80vh] lg:max-h-[620px] max-h-[90vh]"; break; case "three-cards": minWidth = "min-w-[1066px]";