From b61422b5547d8a91e39a61efeb36098c4a350a7a Mon Sep 17 00:00:00 2001 From: Sayantan Date: Wed, 5 Oct 2022 23:31:54 +0530 Subject: [PATCH] Added custom scrollbar --- assets/css/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/assets/css/style.css b/assets/css/style.css index c0d0e47..deb3eb3 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -9,7 +9,22 @@ body { color: #444; font-family: "Poppins", sans-serif; } +/* width */ +::-webkit-scrollbar { + width: 10px; +} +/* Track */ +::-webkit-scrollbar-track { + box-shadow: inset 0 #0c2e8a; + border-radius: 5px; +} + +/* Handle */ +::-webkit-scrollbar-thumb { + background: #2796ff; + border-radius: 10px; +} a { color: #2796ff; text-decoration: none;