fix having double scrollbars

This commit is contained in:
Marie 2025-05-18 19:18:29 +00:00
parent 1801cbd278
commit 793ef45bea

View file

@ -235,6 +235,12 @@ rt {
contain: strict;
overflow: auto;
overscroll-behavior: contain;
-ms-overflow-style: none;
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
}
}
._pageScrollable {