From 66ec70f776017f81fcabb7fd13c2dd31e78a11c9 Mon Sep 17 00:00:00 2001 From: Thomas Trompette Date: Tue, 8 Oct 2024 13:36:20 +0200 Subject: [PATCH] Fix hover advanced settings (#7488) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Capture d’écran 2024-10-08 à 12 12 59 --- .../navigation-drawer/components/NavigationDrawerSection.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerSection.tsx b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerSection.tsx index bea1d0f8e..c1fd93847 100644 --- a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerSection.tsx +++ b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerSection.tsx @@ -4,6 +4,7 @@ const StyledSection = styled.div` display: flex; flex-direction: column; gap: ${({ theme }) => theme.betweenSiblingsGap}; + width: 100%; `; export { StyledSection as NavigationDrawerSection };