From c2bd5a8a1b45775f6929f555dd58fd62c386322a Mon Sep 17 00:00:00 2001 From: Spythere Date: Sun, 4 Sep 2022 01:10:56 +0200 Subject: [PATCH] Poprawiono mobilny scroll bar --- src/styles/global.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/styles/global.scss b/src/styles/global.scss index c46e3c9..68dd4a2 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -282,3 +282,18 @@ ul { transform: translateX(-50%); } } + +@include smallScreen { + ::-webkit-scrollbar { + width: 0.5em; + height: 0.5em; + + &-track { + background-color: #222; + } + + &-thumb { + background-color: #777; + } + } +}