1
0
mirror of https://gitlab.com/MisterBiggs/brain-quartz.git synced 2025-06-16 09:46:39 +00:00

fix(ios): mobile explorer overscroll behavior (#2008)

This commit is contained in:
Emile Bangma 2025-06-03 19:51:38 +02:00 committed by GitHub
parent cd13ce3c47
commit 499adf4a4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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