Layout: Nav vertikal zentriert, Info-Karte höher

- #world-labels bottom: 20px→33px (vertikal zentriert zwischen Chips und Footer)
- .world-panel top-padding: 32px→14px (Info-Karte näher an Statusleiste)
- components.css ?v=1006, SW by-v1007, APP_VER 1007
This commit is contained in:
rene 2026-05-16 09:06:28 +02:00
parent c29b2c1752
commit 8c69143b09
5 changed files with 6 additions and 6 deletions

View file

@ -410,7 +410,7 @@ async def serve_media(path: str, request: _Request):
raise _HE(404, "Nicht gefunden.") raise _HE(404, "Nicht gefunden.")
return _media_response(filepath) return _media_response(filepath)
APP_VER = "1006" # muss mit APP_VER in app.js übereinstimmen APP_VER = "1007" # muss mit APP_VER in app.js übereinstimmen
@app.get("/.well-known/assetlinks.json") @app.get("/.well-known/assetlinks.json")
async def assetlinks(): async def assetlinks():

View file

@ -7884,7 +7884,7 @@ svg.empty-state-icon {
/* Welt-Labels — jetzt unten als Tab-Bar */ /* Welt-Labels — jetzt unten als Tab-Bar */
#world-labels { #world-labels {
position: fixed; position: fixed;
bottom: calc(env(safe-area-inset-bottom, 0px) + 20px); bottom: calc(env(safe-area-inset-bottom, 0px) + 33px);
top: auto; top: auto;
left: 0; right: 0; left: 0; right: 0;
display: flex; display: flex;
@ -8028,7 +8028,7 @@ svg.empty-state-icon {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-between; /* Info oben, Chips unten */ justify-content: space-between; /* Info oben, Chips unten */
padding: calc(env(safe-area-inset-top, 0px) + 32px) 14px padding: calc(env(safe-area-inset-top, 0px) + 14px) 14px
calc(env(safe-area-inset-bottom, 0px) + 76px); calc(env(safe-area-inset-bottom, 0px) + 76px);
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;

View file

@ -103,7 +103,7 @@
<!-- CSS: Reihenfolge ist wichtig — ?v= zwingt Browser zur Neuladung --> <!-- CSS: Reihenfolge ist wichtig — ?v= zwingt Browser zur Neuladung -->
<link rel="stylesheet" href="/css/design-system.css?v=907"> <link rel="stylesheet" href="/css/design-system.css?v=907">
<link rel="stylesheet" href="/css/layout.css?v=973"> <link rel="stylesheet" href="/css/layout.css?v=973">
<link rel="stylesheet" href="/css/components.css?v=1005"> <link rel="stylesheet" href="/css/components.css?v=1006">
</head> </head>
<body> <body>

View file

@ -3,7 +3,7 @@
Router, State-Management, Navigation, Initialisierung. Router, State-Management, Navigation, Initialisierung.
============================================================ */ ============================================================ */
const APP_VER = '1006'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen const APP_VER = '1007'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
const APP_VERSION = '1.6.0'; // ← semantische Version, wird bei make release gesetzt const APP_VERSION = '1.6.0'; // ← semantische Version, wird bei make release gesetzt
const IS_STAGING = location.hostname === 'staging.banyaro.app'; const IS_STAGING = location.hostname === 'staging.banyaro.app';
// Cache-Bust-Parameter nach Update-Reload sofort entfernen // Cache-Bust-Parameter nach Update-Reload sofort entfernen

View file

@ -3,7 +3,7 @@
Offline-Cache + Push Notifications + Tile-Cache Offline-Cache + Push Notifications + Tile-Cache
============================================================ */ ============================================================ */
const CACHE_VERSION = 'by-v1006'; const CACHE_VERSION = 'by-v1007';
const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_STATIC = `${CACHE_VERSION}-static`;
const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten
const CACHE_API = 'ban-yaro-api-v1'; // API-Response-Cache const CACHE_API = 'ban-yaro-api-v1'; // API-Response-Cache