From 229a93e41a579ee62b93102f5addd583ae86ecd8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?=
<71827178+bosiraphael@users.noreply.github.com>
Date: Fri, 6 Dec 2024 16:37:46 +0100
Subject: [PATCH] Fix advanced settings icon tool and right bar alignment
(#8910)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Before:
After:
Co-authored-by: Weiko
---
.../settings/components/SettingsNavigationDrawerItems.tsx | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/packages/twenty-front/src/modules/settings/components/SettingsNavigationDrawerItems.tsx b/packages/twenty-front/src/modules/settings/components/SettingsNavigationDrawerItems.tsx
index 2340ed2b1..51f835ca2 100644
--- a/packages/twenty-front/src/modules/settings/components/SettingsNavigationDrawerItems.tsx
+++ b/packages/twenty-front/src/modules/settings/components/SettingsNavigationDrawerItems.tsx
@@ -54,14 +54,10 @@ const StyledIconContainer = styled.div`
border-right: 1px solid ${MAIN_COLORS.yellow};
position: absolute;
left: ${({ theme }) => theme.spacing(-5)};
- margin-top: ${({ theme }) => theme.spacing(2)};
- height: 75%;
+ height: 100%;
`;
const StyledContainer = styled.div`
- display: flex;
- width: 100%;
- gap: ${({ theme }) => theme.spacing(1)};
position: relative;
`;