diff --git a/css/base/unraid/unraid-base.css b/css/base/unraid/unraid-base.css index a964c61c..04c78dc9 100644 --- a/css/base/unraid/unraid-base.css +++ b/css/base/unraid/unraid-base.css @@ -737,4 +737,24 @@ unraid-authed::part(div[data-v-050c892a] > button) { dt { color: var(--text-hover); -} \ No newline at end of file +} + +::-webkit-scrollbar { + height: 10px; + width : 10px; +} + +::-webkit-scrollbar-track { + background: var(--main-bg-color); +} + +::-webkit-scrollbar-thumb { + background-color: hsla(0,0%,100%,.08)!important; + border: 1px solid transparent; + border-radius: 5px; + background-clip: padding-box; +} + +::-webkit-scrollbar-thumb:hover { + background-color: rgba(255, 255, 255, 0.25); +}