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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue