From 14ee357ac8da8b9c85888a5868a9686bd2f2612d Mon Sep 17 00:00:00 2001 From: trashtemp <96388163+trashtemp@users.noreply.github.com> Date: Thu, 30 Dec 2021 19:42:12 +0100 Subject: [PATCH] fix(serverlist): adjusted design --- src/components/navigation/left/ServerListSidebar.tsx | 1 + src/components/ui/LineDivider.tsx | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/navigation/left/ServerListSidebar.tsx b/src/components/navigation/left/ServerListSidebar.tsx index c979bdbb..9ba4eb60 100644 --- a/src/components/navigation/left/ServerListSidebar.tsx +++ b/src/components/navigation/left/ServerListSidebar.tsx @@ -95,6 +95,7 @@ const ServerList = styled.div` overflow-y: scroll; padding-bottom: 20px; flex-direction: column; + margin-top: -2px; scrollbar-width: none; diff --git a/src/components/ui/LineDivider.tsx b/src/components/ui/LineDivider.tsx index 58a9c7a4..fab42452 100644 --- a/src/components/ui/LineDivider.tsx +++ b/src/components/ui/LineDivider.tsx @@ -1,9 +1,9 @@ import styled from "styled-components"; export default styled.div` - height: 0px; + height: 0; opacity: 0.6; flex-shrink: 0; - margin: 8px 10px; + margin: 8px 15px; border-top: 1px solid var(--tertiary-foreground); `;