From 0141382b7deb3a0656e50c005dd1d3c26cdc308f Mon Sep 17 00:00:00 2001 From: Bhavy_Zala Date: Fri, 7 Jun 2024 19:12:52 +0530 Subject: [PATCH 1/2] Scrollbar style added --- frontend/package-lock.json | 2 +- frontend/src/App.css | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index a0a062d4..46b35a5a 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -4635,4 +4635,4 @@ "integrity": "sha512-Bq0B+ixT/DMyG8kgX2xWcI5jUvCwqrMxSFam7m0lAf78nf04hv6lNCsyLYdyYTrCVMqNDY/206K7eExYCeSyUQ==" } } -} +} \ No newline at end of file diff --git a/frontend/src/App.css b/frontend/src/App.css index e69de29b..753ba388 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -0,0 +1,23 @@ +::-webkit-scrollbar-track +{ + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1); + background-color: #F5F5F5; + border-radius: 10px; +} + +::-webkit-scrollbar +{ + width: 10px; + background-color: #F5F5F5; +} +::-webkit-scrollbar-thumb +{ + border-radius: 10px; + background-color: #FFF; + background-image: -webkit-gradient(linear, + 40% 0%, + 75% 84%, + from(#4D9C41), + to(#19911D), + color-stop(.6,#54DE5D)) +} From 3a7cfa8c91aad14fc6bae6773eb5e646e9a64396 Mon Sep 17 00:00:00 2001 From: Bhavy Zala <126322584+zalabhavy@users.noreply.github.com> Date: Sat, 8 Jun 2024 11:36:33 +0530 Subject: [PATCH 2/2] Update App.css --- frontend/src/App.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/App.css b/frontend/src/App.css index 753ba388..24029379 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -15,9 +15,9 @@ border-radius: 10px; background-color: #FFF; background-image: -webkit-gradient(linear, - 40% 0%, - 75% 84%, - from(#4D9C41), - to(#19911D), - color-stop(.6,#54DE5D)) + 40% 0%, + 75% 84%, + from(#333333), + to(#000000), + color-stop(.6,#666666)); }