Desktop Tab-Grid: Gesundheit (5 Sp.), Admin (4 Sp.), Karte-Legende (8 Sp.), SW by-v332
This commit is contained in:
parent
7ac421fcf9
commit
c503737fb1
6 changed files with 50 additions and 2 deletions
|
|
@ -641,6 +641,46 @@
|
|||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Gesundheit: Tabs auf 2 Zeilen */
|
||||
#page-health .by-tabs {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(var(--health-tab-cols, 5), minmax(0, 1fr));
|
||||
overflow: visible;
|
||||
gap: var(--space-1);
|
||||
padding-bottom: var(--space-2);
|
||||
}
|
||||
#page-health .by-tabs .by-tab {
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Admin: Tabs auf 2 Zeilen */
|
||||
#page-admin .adm-tabs {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(var(--adm-tab-cols, 4), minmax(0, 1fr));
|
||||
overflow: visible;
|
||||
gap: var(--space-1);
|
||||
padding-bottom: var(--space-2);
|
||||
}
|
||||
#page-admin .adm-tabs .by-tab {
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Karte: Legende auf 2 Zeilen */
|
||||
.map-legend {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(var(--map-legend-cols, 8), minmax(0, 1fr));
|
||||
overflow: visible;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-1);
|
||||
}
|
||||
.map-legend .map-legend-btn {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Suche + Threads volle Breite */
|
||||
.forum-main-col {
|
||||
display: flex;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue