From 0ae63b581630b515d5a3b7c82387b9108bc0a72c Mon Sep 17 00:00:00 2001 From: Zakhar Date: Sun, 6 Sep 2026 01:25:38 +0300 Subject: [PATCH] 100dvh overflow filters mobile --- src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 180bb80..44cbafb 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -354,7 +354,7 @@ const Container = styled.main<{$fullHeight: boolean}>` h1 { padding-top: 10px; } - height: ${({ $fullHeight }) => $fullHeight ? 'auto' : '100svh'}; + height: ${({ $fullHeight }) => $fullHeight ? '100dvh' : '100svh'}; border-radius: ${({ $fullHeight }) => $fullHeight ? '0 0 8px 8px' : '0'}; `)} `; @@ -401,7 +401,7 @@ const RightColumn = styled(Column)<{$dataShow: boolean}>` `; const TitleBlock = styled.div` - margin-bottom: 32px; + margin-bottom: 24px; position: relative; h1 {