diff --git a/src/assets/main.css b/src/assets/main.css index 74ad7b2..4141921 100644 --- a/src/assets/main.css +++ b/src/assets/main.css @@ -55,3 +55,43 @@ body { .text-main { color: var(--text-main); } .text-sec { color: var(--text-sec); } .border-main { border-color: var(--border-color); } + +/* Custom Scrollbar */ +::-webkit-scrollbar { + width: 8px; + height: 8px; +} + +::-webkit-scrollbar-track { + background: transparent; + border-radius: 4px; +} + +::-webkit-scrollbar-thumb { + background: rgba(0, 0, 0, 0.15); + border-radius: 4px; + border: 2px solid transparent; + background-clip: padding-box; +} + +::-webkit-scrollbar-thumb:hover { + background: rgba(0, 0, 0, 0.3); + border: 2px solid transparent; + background-clip: padding-box; +} + +::-webkit-scrollbar-corner { + background: transparent; +} + +.dark ::-webkit-scrollbar-thumb { + background: rgba(255, 255, 255, 0.15); + border: 2px solid transparent; + background-clip: padding-box; +} + +.dark ::-webkit-scrollbar-thumb:hover { + background: rgba(255, 255, 255, 0.3); + border: 2px solid transparent; + background-clip: padding-box; +}