From ec11abf54eacbeb7dba7bb36810905f7e65343e4 Mon Sep 17 00:00:00 2001 From: pal-sig <88981777+pal-sig@users.noreply.github.com> Date: Fri, 22 Oct 2021 18:31:53 +0530 Subject: [PATCH] fix: Logo margin is updated (#352) --- frontend/src/container/SideNav/styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/container/SideNav/styles.ts b/frontend/src/container/SideNav/styles.ts index 08dc9813f4..750503e821 100644 --- a/frontend/src/container/SideNav/styles.ts +++ b/frontend/src/container/SideNav/styles.ts @@ -11,7 +11,7 @@ export const ThemeSwitcherWrapper = styled.div` export const Logo = styled.img` width: 100px; - margin: 5%; + margin: 9% 5% 5% 10%; display: ${({ collapsed }): string => (!collapsed ? 'block' : 'none')}; `;