From 8a1f20615e42c5e4f4a207da3e89c37cdd60f5e6 Mon Sep 17 00:00:00 2001 From: trashtemp <96388163+trashtemp@users.noreply.github.com> Date: Thu, 13 Jan 2022 19:30:42 +0100 Subject: [PATCH] fix(sidebar): decreased vertical spacing --- src/components/navigation/left/ServerListSidebar.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/navigation/left/ServerListSidebar.tsx b/src/components/navigation/left/ServerListSidebar.tsx index 3c11b949..08de9085 100644 --- a/src/components/navigation/left/ServerListSidebar.tsx +++ b/src/components/navigation/left/ServerListSidebar.tsx @@ -109,10 +109,12 @@ const ServerList = styled.div` `; const ServerEntry = styled.div<{ active: boolean; home?: boolean }>` - height: 58px; + height: 54px; display: flex; align-items: center; + //transition: 0.2s ease height; + :focus { outline: 3px solid blue; } @@ -165,7 +167,7 @@ const ServerEntry = styled.div<{ active: boolean; home?: boolean }>` const ServerCircle = styled.div` width: 54px; - height: 58px; + height: 54px; display: flex; align-items: center; justify-content: center;