From a725245c2fd93a2770d9ad5e5a5a164b4ba0b2ab Mon Sep 17 00:00:00 2001 From: Reese is on Codeberg Date: Tue, 29 Oct 2024 02:56:16 -0500 Subject: [PATCH] Add padding to navigation header (#8050) This PR adds padding to the header to align the logo with other icons on the sidebar. ## Before ![image](https://github.com/user-attachments/assets/6501bbbf-bf06-4d9f-bff7-2d36c1b63a37) ## After ![image](https://github.com/user-attachments/assets/24610cf8-eab2-49bd-b611-e68a66228fd6) --------- Co-authored-by: martmull --- .../navigation-drawer/components/NavigationDrawerHeader.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerHeader.tsx b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerHeader.tsx index e9d761c57..5805576d5 100644 --- a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerHeader.tsx +++ b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawerHeader.tsx @@ -20,6 +20,7 @@ const StyledContainer = styled.div` `; const StyledSingleWorkspaceContainer = styled(StyledContainer)` gap: ${({ theme }) => theme.spacing(2)}; + padding: ${({ theme }) => theme.spacing(1)}; `; const StyledLogo = styled.div<{ logo: string }>`