From f6063315c183aa4871d36d154789e36b9d801e08 Mon Sep 17 00:00:00 2001 From: GuySerfaty Date: Sun, 10 Nov 2024 10:30:25 +0700 Subject: [PATCH] add more padding to the pods modal --- .../new-components/shared/Modals/PodsCollectionBottomModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/passport-client/new-components/shared/Modals/PodsCollectionBottomModal.tsx b/apps/passport-client/new-components/shared/Modals/PodsCollectionBottomModal.tsx index c70e7eac03..bd17ad554b 100644 --- a/apps/passport-client/new-components/shared/Modals/PodsCollectionBottomModal.tsx +++ b/apps/passport-client/new-components/shared/Modals/PodsCollectionBottomModal.tsx @@ -411,7 +411,7 @@ const Container = styled.div<{ isLandscape: boolean }>` flex-direction: column; // 50px comes from 24px padding we have on the bottom modal max-height: calc( - 100vh - ${({ isLandscape }): number => (isLandscape ? 50 : 120)}px + 100vh - ${({ isLandscape }): number => (isLandscape ? 80 : 150)}px ); `; const ContainerWithPadding = styled.div`