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 {