You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
iOS PWA: persistent gap between the bottom navigation bar and the physical screen edge. Two root causes addressed:
will-change: transform on the flex-child nav caused iOS WebKit's compositor to misplace the GPU layer — removed permanently. CSS transform transitions use hardware acceleration automatically on modern iOS without this hint.
Added -webkit-fill-available as a height fallback before 100dvh on .app-shell to guard against iOS WebKit versions where 100dvh is computed slightly smaller than the actual WKWebView height.