From 24584778bc206e004b373c5a24c4522c073b4f35 Mon Sep 17 00:00:00 2001 From: easyhyun00 Date: Fri, 17 May 2024 16:04:47 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8Feat:=20=EC=8A=A4=ED=81=AC=EB=A1=A4?= =?UTF-8?q?=EB=B0=94=20=EC=BB=A4=EC=8A=A4=ED=85=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/normalize.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/styles/normalize.scss b/src/styles/normalize.scss index 746e811..851507e 100644 --- a/src/styles/normalize.scss +++ b/src/styles/normalize.scss @@ -16,3 +16,17 @@ body, body { margin: 0; } + +::-webkit-scrollbar { + width: 8px; + background-color: black; +} + +::-webkit-scrollbar-thumb { + background: linear-gradient($color-brand-pink, $color-brand-orange); + border-radius: 20px; +} + +::-webkit-scrollbar-thumb:hover { + background: linear-gradient($color-brand-orange, $color-brand-pink); +}