From 02c5c93bd884e43840fd55c2bc814be6d3c8fcfa Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 4 Jun 2026 09:13:50 -0400 Subject: [PATCH] Account for screen safe area in mobile drawer bottom padding (#12577) Co-authored-by: Claude --- app/components/primitives/Drawer.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/primitives/Drawer.tsx b/app/components/primitives/Drawer.tsx index 9fdd6af6a4..d556d400d3 100644 --- a/app/components/primitives/Drawer.tsx +++ b/app/components/primitives/Drawer.tsx @@ -102,6 +102,7 @@ const StyledContent = styled(m.div)` const StyledInnerContent = styled(Flex)` padding: 6px; + padding-bottom: calc(6px + var(--sab, 0px)); height: 100%; `;