Fix: Chips gleichförmig bei großer iOS-Schriftgröße (height 74px statt min-height, max-height px statt em), SW by-v1035
This commit is contained in:
parent
a736d66c47
commit
416f32b056
4 changed files with 7 additions and 6 deletions
|
|
@ -8004,7 +8004,7 @@ svg.empty-state-icon {
|
|||
flex: 0 1 80px !important;
|
||||
min-width: 60px !important;
|
||||
width: 80px !important;
|
||||
min-height: 74px !important;
|
||||
height: 74px !important;
|
||||
}
|
||||
/* Nav vertikal zentriert zwischen Chips und Footer */
|
||||
#world-labels {
|
||||
|
|
@ -8203,7 +8203,8 @@ svg.empty-state-icon {
|
|||
transition: background 0.12s, transform 0.1s;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
user-select: none;
|
||||
min-height: 74px;
|
||||
height: 74px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.world-chip:active {
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
|
|
@ -8215,7 +8216,7 @@ svg.empty-state-icon {
|
|||
font-weight: 600;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
line-height: 1.2;
|
||||
max-height: 2.4em; /* max. 2 Zeilen */
|
||||
max-height: 24px; /* 2 Zeilen bei 10px — px statt em, damit iOS-Schriftgröße nicht skaliert */
|
||||
overflow: hidden;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
Router, State-Management, Navigation, Initialisierung.
|
||||
============================================================ */
|
||||
|
||||
const APP_VER = '1034'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||
const APP_VER = '1035'; // ← 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-v1034';
|
||||
const CACHE_VERSION = 'by-v1035';
|
||||
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