diff --git a/lib/components/sidebar/index.tsx b/lib/components/sidebar/index.tsx index 22a32e8..c8d2b79 100644 --- a/lib/components/sidebar/index.tsx +++ b/lib/components/sidebar/index.tsx @@ -51,6 +51,16 @@ export const Sidebar: React.FC = React.memo(({ sides }) => { overflow-x: hidden; height: calc(100vh - 140px); } + + .box::-webkit-scrollbar { + width: 5px; + background-color: ${theme.palette.accents_1}; + } + + .box::-webkit-scrollbar-thumb { + background-color: ${theme.palette.accents_2}; + border-radius: ${theme.layout.radius}; + } .box>:global(.item) { margin-bottom: 10px; diff --git a/pages/_app.tsx b/pages/_app.tsx index d21d246..44bdaf3 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -36,45 +36,55 @@ const Application: NextPage = ({ Component, pageProps }) => {