summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarie <github@yuugi.dev>2025-05-18 19:18:29 +0000
committerMarie <github@yuugi.dev>2025-05-18 19:18:29 +0000
commit793ef45bea61ffa532fc10a4b87717b338b28c7e (patch)
tree84e70e4981011e1c3f432fefe85be83f14e41870
parentmerge: set transparent background for naked containers - fix 1063 (!1033) (diff)
downloadsharkey-793ef45bea61ffa532fc10a4b87717b338b28c7e.tar.gz
sharkey-793ef45bea61ffa532fc10a4b87717b338b28c7e.tar.bz2
sharkey-793ef45bea61ffa532fc10a4b87717b338b28c7e.zip
fix having double scrollbars
-rw-r--r--packages/frontend/src/style.scss6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/frontend/src/style.scss b/packages/frontend/src/style.scss
index 18e67eaa95..7b2638903b 100644
--- a/packages/frontend/src/style.scss
+++ b/packages/frontend/src/style.scss
@@ -235,6 +235,12 @@ rt {
contain: strict;
overflow: auto;
overscroll-behavior: contain;
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+
+ &::-webkit-scrollbar {
+ display: none;
+ }
}
._pageScrollable {