From d4df8e39ab906e24d83e15793ac10a554bbc247a Mon Sep 17 00:00:00 2001 From: Iaroslav Moskviak Date: Fri, 22 May 2026 14:54:43 -0400 Subject: [PATCH] scroll on hover fix --- src/styles/_misc.scss | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/styles/_misc.scss b/src/styles/_misc.scss index e2b3a9f2b..47f087c7d 100644 --- a/src/styles/_misc.scss +++ b/src/styles/_misc.scss @@ -86,7 +86,22 @@ body { } .responsive { - overflow: auto; + overflow: auto; + scrollbar-width: thin; // Firefox: thin fixed-width scrollbar + + &::-webkit-scrollbar { + width: 8px; + height: 8px; + } + + &::-webkit-scrollbar-thumb { + background: rgba(0, 0, 0, 0.25); + border-radius: 4px; + } + + &::-webkit-scrollbar-track { + background: transparent; + } } .text-center {