diff --git a/backend/static/css/design-system.css b/backend/static/css/design-system.css index 5b6f1e0..e3f5166 100644 --- a/backend/static/css/design-system.css +++ b/backend/static/css/design-system.css @@ -197,6 +197,7 @@ html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; height: 100%; + overscroll-behavior: none; /* kein Window-Bounce auf iOS */ } body { @@ -207,6 +208,7 @@ body { color: var(--c-text); background-color: var(--c-bg); min-height: 100%; + overscroll-behavior: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } diff --git a/backend/static/css/layout.css b/backend/static/css/layout.css index adea5fb..05f8d15 100644 --- a/backend/static/css/layout.css +++ b/backend/static/css/layout.css @@ -20,12 +20,13 @@ /* Content-Bereich scrollt intern */ #page-content { - flex: 1; - min-height: 0; - overflow-y: auto; - overflow-x: hidden; + flex: 1; + min-height: 0; + overflow-y: auto; + overflow-x: hidden; -webkit-overflow-scrolling: touch; - padding-bottom: calc(var(--nav-bottom-height) + var(--safe-bottom) + 16px); + overscroll-behavior-y: none; /* verhindert iOS-Bounce → fixed Nav bleibt stabil */ + padding-bottom: calc(var(--nav-bottom-height) + var(--safe-bottom) + 16px); } /* Vollbild-Seiten: #page-content kein Scroll */ diff --git a/backend/static/js/app.js b/backend/static/js/app.js index 9c2a3da..32c9369 100644 --- a/backend/static/js/app.js +++ b/backend/static/js/app.js @@ -3,7 +3,7 @@ Router, State-Management, Navigation, Initialisierung. ============================================================ */ -const APP_VER = '507'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen +const APP_VER = '508'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen const APP_VERSION = '1.0.0'; // ← semantische Version, wird bei make release gesetzt const IS_STAGING = location.hostname === 'staging.banyaro.app'; diff --git a/backend/static/sw.js b/backend/static/sw.js index 77a27bd..1411929 100644 --- a/backend/static/sw.js +++ b/backend/static/sw.js @@ -3,7 +3,7 @@ Offline-Cache + Push Notifications + Tile-Cache ============================================================ */ -const CACHE_VERSION = 'by-v530'; +const CACHE_VERSION = 'by-v531'; const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten const CACHE_API = 'ban-yaro-api-v1'; // API-Response-Cache