diff options
| author | Marie <github@yuugi.dev> | 2025-05-18 19:18:29 +0000 |
|---|---|---|
| committer | Marie <github@yuugi.dev> | 2025-05-18 19:18:29 +0000 |
| commit | 793ef45bea61ffa532fc10a4b87717b338b28c7e (patch) | |
| tree | 84e70e4981011e1c3f432fefe85be83f14e41870 /packages | |
| parent | merge: set transparent background for naked containers - fix 1063 (!1033) (diff) | |
| download | sharkey-793ef45bea61ffa532fc10a4b87717b338b28c7e.tar.gz sharkey-793ef45bea61ffa532fc10a4b87717b338b28c7e.tar.bz2 sharkey-793ef45bea61ffa532fc10a4b87717b338b28c7e.zip | |
fix having double scrollbars
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/frontend/src/style.scss | 6 |
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 { |