fix(ios): mobile explorer overscroll behavior

This commit is contained in:
saberzero1 2025-06-02 08:59:24 +02:00
parent 7b052e8844
commit e7272079b5
No known key found for this signature in database

View File

@ -239,7 +239,7 @@ li:has(> .folder-outer:not(.open)) > .folder-container > svg {
margin-top: 0;
background-color: var(--light);
max-width: 100vw;
width: 100%;
width: 100vw;
transform: translateX(-100vw);
transition:
transform 200ms ease,
@ -265,6 +265,6 @@ li:has(> .folder-outer:not(.open)) > .folder-container > svg {
.mobile-no-scroll {
@media all and ($mobile) {
overflow: hidden;
overscroll-behavior: none;
}
}