From 2bfd2f6b85227b180ed7052d22373bbc94d93fb8 Mon Sep 17 00:00:00 2001
From: Abdul Rahman <81605929+abdulrahmancodes@users.noreply.github.com>
Date: Wed, 25 Mar 2026 13:05:49 +0530
Subject: [PATCH] fix navigation menu item overflow issue (#18937)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Before
After
---
.../navigation-drawer/components/NavigationDrawerItem.tsx | 1 +
1 file changed, 1 insertion(+)
diff --git a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerItem.tsx b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerItem.tsx
index df4cf36fc4..78ef57a89a 100644
--- a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerItem.tsx
+++ b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerItem.tsx
@@ -111,6 +111,7 @@ const StyledItem = styled.button`
height: ${themeCssVariables.spacing[7]};
margin-top: ${({ indentationLevel }) =>
indentationLevel === 2 ? '2px' : '0'};
+ min-width: 0;
padding-bottom: ${themeCssVariables.spacing[1]};
padding-left: ${themeCssVariables.spacing[1]};
padding-right: ${({ hasRightOptions }) =>