From e93f3d8a7c593fae7f5fad6ad4f6e08c9bf78d43 Mon Sep 17 00:00:00 2001 From: Parth Arora <60436959+parth1614@users.noreply.github.com> Date: Wed, 25 Aug 2021 23:18:50 +0530 Subject: [PATCH] Custom Scrollbar --- src/App.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/App.css b/src/App.css index 7256ad2..63fdf57 100644 --- a/src/App.css +++ b/src/App.css @@ -2,6 +2,17 @@ margin: 0; } +body::-webkit-scrollbar { + width: 8px; +} +body::-webkit-scrollbar-thumb { + background-color: plum; + border-radius: 50px; +} +body::-webkit-scrollbar-track { + background-color: pink; +} + body { background-color: #f5f6fa; }