From d1fdb6861101ef99bba0fae6e638d89a7804489d Mon Sep 17 00:00:00 2001 From: ParthAggarwal16 Date: Fri, 6 Mar 2026 20:43:39 +0530 Subject: [PATCH 1/2] fix(opencre): improve scrollbar styling and remove visible track background --- application/frontend/src/app.scss | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/application/frontend/src/app.scss b/application/frontend/src/app.scss index 4b0fb3c6a..33a201f3d 100644 --- a/application/frontend/src/app.scss +++ b/application/frontend/src/app.scss @@ -28,6 +28,25 @@ body { overflow-y: auto; overflow-x: hidden; overscroll-behavior-y: none; + + scrollbar-color: #999999 white; + + &::-webkit-scrollbar { + width: 6px; + } + + &::-webkit-scrollbar-track { + background: white; + } + + &::-webkit-scrollbar-thumb { + background-color: #999999; + border-radius: 10px; + } + + &::-webkit-scrollbar-thumb:hover { + background-color: #777777; + } } .app { From f7781f50277463694096598f021ee71ead17edfc Mon Sep 17 00:00:00 2001 From: ParthAggarwal16 Date: Fri, 6 Mar 2026 21:03:39 +0530 Subject: [PATCH 2/2] fix(openCRE): remove white scrollbar track on hover --- application/frontend/src/app.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/frontend/src/app.scss b/application/frontend/src/app.scss index 33a201f3d..db5fd0164 100644 --- a/application/frontend/src/app.scss +++ b/application/frontend/src/app.scss @@ -29,14 +29,14 @@ body { overflow-x: hidden; overscroll-behavior-y: none; - scrollbar-color: #999999 white; + scrollbar-color: #999999 transparent; &::-webkit-scrollbar { width: 6px; } &::-webkit-scrollbar-track { - background: white; + background: transparent; } &::-webkit-scrollbar-thumb {