From f50d581d0e73048977b404ca7038f9bff85f7cc0 Mon Sep 17 00:00:00 2001 From: looskie <50378828+Looskie@users.noreply.github.com> Date: Fri, 25 Jun 2021 21:53:53 -0400 Subject: [PATCH] Feat: Scrollbar --- pages/index.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pages/index.tsx b/pages/index.tsx index 238dfff..f321801 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -58,6 +58,19 @@ const GlobalStyle = createGlobalStyle` padding: 0; font-family: 'Poppins', sans-serif; } + + ::-webkit-scrollbar { + width: 10px; + } + + ::-webkit-scrollbar-thumb { + background: rgb(64 68 78); + border-radius: 8px; + } + + ::-webkit-scrollbar-track { + background: rgb(24 28 39); + } `; const Main = styled.div`