From 5370d98dc5229fd4b9dc74d5faed81066aa2cfa1 Mon Sep 17 00:00:00 2001 From: ullas kunder Date: Sun, 21 Feb 2021 13:42:33 +0530 Subject: [PATCH] Custom Scrollbar I have added custom scrollbar it just look cool thank you sir. --- live-user-filter/style.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/live-user-filter/style.css b/live-user-filter/style.css index bae1199..3a79f01 100644 --- a/live-user-filter/style.css +++ b/live-user-filter/style.css @@ -52,6 +52,29 @@ body { outline: none; } +/* custom scrollbar */ + +::-webkit-scrollbar { + width: 20px; +} + +::-webkit-scrollbar-track { + background-color: transparent; +} + +::-webkit-scrollbar-thumb { + + background-color: #00bbff; + border-radius: 20px; + border: 6px solid transparent; + background-clip: content-box; +} + +::-webkit-scrollbar-thumb:hover { + background-color: #a8bbbf; +} +/* end of custom scrollbar*/ + .user-list { background-color: #fff; list-style-type: none;