Feat: Scrollbar

This commit is contained in:
looskie
2021-06-25 21:53:53 -04:00
parent 98b475c51d
commit f50d581d0e

View File

@@ -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`