diff --git a/src/constants/globalStyle.ts b/src/constants/globalStyle.ts index 5d0fc29..995fac1 100644 --- a/src/constants/globalStyle.ts +++ b/src/constants/globalStyle.ts @@ -12,6 +12,17 @@ const GlobalStyle = createGlobalStyle` font-size: 16px; } + + ::-webkit-scrollbar { + width: 8px; + background: ${({ theme }) => theme.BLACK_SECONDARY}; + } + + ::-webkit-scrollbar-thumb { + border-radius: 5px; + background-color: ${({ theme }) => theme.SILVER_DARK}; + } + a { text-decoration: none; color: unset;