diff --git a/src/app/globals.css b/src/app/globals.css index 0a70c413..d9f9059a 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -5,3 +5,22 @@ html, body { height: 100%; } + +*::-webkit-scrollbar { + width: 12px; +} + +*::-webkit-scrollbar-track { + background: transparent; +} + +*::-webkit-scrollbar-thumb { + background-color: rgba(0, 0, 0, 0.25); + border-radius: 6px; + border: 3px solid transparent; + background-clip: padding-box; +} + +*::-webkit-scrollbar-thumb:hover { + background-color: rgba(0, 0, 0, 0.5); +}