Fix Desktop-Layout Welten: Top-Padding + Chips-Breite
@media 768px: - .world-panel top-padding zurück auf safe-area+58px (Nav ist oben) - .world-chips-grid max-width:480px zentriert (kein Full-Width Bottom-Bar) SW by-v1005, APP_VER 1005
This commit is contained in:
parent
d6eb2bcf98
commit
ad942e81b2
5 changed files with 14 additions and 4 deletions
|
|
@ -7943,6 +7943,16 @@ svg.empty-state-icon {
|
|||
backdrop-filter: none;
|
||||
-webkit-backdrop-filter: none;
|
||||
}
|
||||
/* Desktop: Top-Padding wiederherstellen (Nav ist oben) */
|
||||
.world-panel {
|
||||
padding-top: calc(env(safe-area-inset-top, 0px) + 58px);
|
||||
}
|
||||
/* Desktop: Chips nicht als Full-Width Bottom-Bar */
|
||||
.world-chips-grid {
|
||||
max-width: 480px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
|
||||
/* Settings-Button */
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@
|
|||
<!-- CSS: Reihenfolge ist wichtig — ?v= zwingt Browser zur Neuladung -->
|
||||
<link rel="stylesheet" href="/css/design-system.css?v=907">
|
||||
<link rel="stylesheet" href="/css/layout.css?v=973">
|
||||
<link rel="stylesheet" href="/css/components.css?v=1003">
|
||||
<link rel="stylesheet" href="/css/components.css?v=1004">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
Router, State-Management, Navigation, Initialisierung.
|
||||
============================================================ */
|
||||
|
||||
const APP_VER = '1004'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||
const APP_VER = '1005'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||
const APP_VERSION = '1.6.0'; // ← semantische Version, wird bei make release gesetzt
|
||||
const IS_STAGING = location.hostname === 'staging.banyaro.app';
|
||||
// Cache-Bust-Parameter nach Update-Reload sofort entfernen
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
Offline-Cache + Push Notifications + Tile-Cache
|
||||
============================================================ */
|
||||
|
||||
const CACHE_VERSION = 'by-v1004';
|
||||
const CACHE_VERSION = 'by-v1005';
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue