From f451aca33e698c6594e758db4823fd964d805463 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Sun, 31 Mar 2024 13:36:21 +0300 Subject: [PATCH] Fixed height of modal --- src/frontend/src/modals/baseModal/index.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/frontend/src/modals/baseModal/index.tsx b/src/frontend/src/modals/baseModal/index.tsx index 719de33e2..b61ceac11 100644 --- a/src/frontend/src/modals/baseModal/index.tsx +++ b/src/frontend/src/modals/baseModal/index.tsx @@ -139,7 +139,7 @@ function BaseModal({ break; case "large": minWidth = "min-w-[85vw]" ; - height = "h-[80vh]"; + height = "h-[90vh]"; break; case "three-cards": minWidth = "min-w-[1066px]"; @@ -147,7 +147,7 @@ function BaseModal({ break; case "large-thin": minWidth = "min-w-[65vw]"; - height = "h-[70vh]"; + height = "h-[90vh]"; break; case "large-h-full": minWidth = "min-w-[80vw]"; @@ -172,33 +172,33 @@ function BaseModal({ {triggerChild} -
+
{headerChild}
{ContentChild}
{ContentFooter && ( -
{ContentFooter}
+
{ContentFooter}
)} ) : ( {triggerChild} - -
+ +
{headerChild}
{ContentChild}
{ContentFooter && ( -
{ContentFooter}
+
{ContentFooter}
)}