fix: iOS PWA bottom nav shifting up in standalone mode
In iOS WebKit standalone (home screen) mode, position:fixed elements move with the page when the body itself becomes scrollable - unlike regular Safari where fixed elements stay pinned. The root cause was body having min-height: 100dvh without overflow: hidden, which allowed body scroll to occur when content overflowed. Fix: html and body are now overflow: hidden with fixed height (100% / 100dvh) so all scrolling is confined to .app-content. Service worker bumped to shell-v30 to force re-download of reset.css on installed PWAs.
This commit is contained in:
+1
-1
@@ -12,7 +12,7 @@
|
||||
* API: Immer Netzwerk (kein Caching von Nutzerdaten)
|
||||
*/
|
||||
|
||||
const SHELL_CACHE = 'oikos-shell-v29';
|
||||
const SHELL_CACHE = 'oikos-shell-v30';
|
||||
const PAGES_CACHE = 'oikos-pages-v28';
|
||||
const ASSETS_CACHE = 'oikos-assets-v27';
|
||||
const ALL_CACHES = [SHELL_CACHE, PAGES_CACHE, ASSETS_CACHE];
|
||||
|
||||
Reference in New Issue
Block a user