diff --git a/backend/static/css/layout.css b/backend/static/css/layout.css index 8ffa323..399a9c7 100644 --- a/backend/static/css/layout.css +++ b/backend/static/css/layout.css @@ -23,13 +23,22 @@ -webkit-overflow-scrolling: touch; } +/* Mobile only: iOS-Bounce verhindert dass fixed-Nav driftet */ +@media (max-width: 767px) { + #page-content { + overscroll-behavior-y: none; + } +} + /* Desktop: Sidebar-Layout — kein Bottom-Nav, natürliche Höhe */ @media (min-width: 768px) { #app { flex-direction: row; } #page-content { - min-height: unset; + min-height: unset; + overflow-y: visible; /* nicht als Scroll-Container — Window scrollt */ + overflow-x: visible; padding-bottom: 0; padding-left: var(--nav-sidebar-width); } diff --git a/backend/static/index.html b/backend/static/index.html index 688dd83..1cd9cfa 100644 --- a/backend/static/index.html +++ b/backend/static/index.html @@ -88,9 +88,9 @@ - - - + + + diff --git a/backend/static/js/app.js b/backend/static/js/app.js index e3584f8..c05a7a5 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 = '503'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen +const APP_VER = '522'; // ← 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/manifest.json b/backend/static/manifest.json index d71ba4c..1fa53ab 100644 --- a/backend/static/manifest.json +++ b/backend/static/manifest.json @@ -1,6 +1,6 @@ { "id": "/", - "version": "1.1.0", + "version": "1.1.1", "name": "Ban Yaro — Die Hunde-Plattform", "short_name": "Ban Yaro", "description": "Alles rund um deinen Hund. Von Welpe bis Opa.", diff --git a/backend/static/sw.js b/backend/static/sw.js index 69c63d8..88448fe 100644 --- a/backend/static/sw.js +++ b/backend/static/sw.js @@ -3,16 +3,16 @@ Offline-Cache + Push Notifications + Tile-Cache ============================================================ */ -const CACHE_VERSION = 'by-v526'; +const CACHE_VERSION = 'by-v545'; 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 // index.html wird NICHT pre-gecacht (immer Network-First) const STATIC_ASSETS = [ - '/css/design-system.css?v=500', - '/css/layout.css?v=500', - '/css/components.css?v=500', + '/css/design-system.css?v=545', + '/css/layout.css?v=545', + '/css/components.css?v=545', '/icons/phosphor.svg', '/js/api.js', '/js/ui.js',