From a1718c63ca06e7eabf635225ab165f96fd82378e Mon Sep 17 00:00:00 2001 From: Shoaibdev7 Date: Wed, 4 Sep 2024 09:30:31 -0700 Subject: [PATCH] fix(blue-print): overflow blue print modal --- src/components/ModalsContainer/BlueprintModal/Body/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/ModalsContainer/BlueprintModal/Body/index.tsx b/src/components/ModalsContainer/BlueprintModal/Body/index.tsx index 3210aff65..7e2b63058 100644 --- a/src/components/ModalsContainer/BlueprintModal/Body/index.tsx +++ b/src/components/ModalsContainer/BlueprintModal/Body/index.tsx @@ -259,6 +259,7 @@ const InnerEditorWrapper = styled.div` height: 100%; overflow-y: auto; padding: 16px; + max-height: calc(90vh - 20px); ` const Container = styled(Flex)`