From 9277cb772999deec22050e0aa1250b9b3de1dc94 Mon Sep 17 00:00:00 2001 From: Harshit Singh <73997189+harshit078@users.noreply.github.com> Date: Thu, 10 Oct 2024 20:52:07 +0530 Subject: [PATCH] fix: Settings Navigation drawer crops elements (#7557) Closes #7550 --------- Co-authored-by: Lucas Bordeau --- .../navigation-drawer/components/NavigationDrawer.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawer.tsx b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawer.tsx index ce0bb6f70e..997441038d 100644 --- a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawer.tsx +++ b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawer.tsx @@ -47,6 +47,8 @@ const StyledContainer = styled.div<{ isSubMenu?: boolean }>` @media (max-width: ${MOBILE_VIEWPORT}px) { width: 100%; + padding-left: 20px; + padding-right: 20px; } `; const StyledItemsContainer = styled.div`