fix(app): prevent mobile document overscroll

This commit is contained in:
Haileyesus
2026-06-26 19:33:05 +03:00
parent 5459d7c60e
commit da27dd93db

View File

@@ -137,6 +137,12 @@
height: 100%;
margin: 0;
padding: 0;
/* The app shell is a fixed inset-0 container (see AppContent), so the
document itself never needs to scroll. Clipping it removes the phantom
full-height page scrollbar and disables the browser pull-to-refresh
gesture that reloads the page when scrolling up on mobile. */
overflow: hidden;
overscroll-behavior-y: contain;
}
/* Root element with safe area padding for PWA */