fix: Matrix groesser (110px Cells statt 88px) — fuellt mehr Vertikalraum

Vorige Version hatte ~110 px Slack zwischen Matrix-Legende und Begruendung.
Matrix-Cells von 88×88 auf 110×110 hochgezogen, Label-Spalte 130→150 px,
Symbol-Schrift 19→24 pt, Zeilen-Header 36→40 px Hoehe.

Resultat: Matrix-Grid jetzt ca. 700×586 px (vorher 570×476). Slack im
matrix-block (flex-grow) deutlich kleiner, Card visueller dichter
gefuellt.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dotty Dotter 2026-05-07 13:34:02 +02:00
parent d470e03caf
commit 4734e89522

View File

@ -131,7 +131,7 @@
align-items: center;
justify-content: center;
font-family: 'Source Code Pro', monospace;
font-size: {% if is_portrait %}19pt{% elif is_og %}10pt{% else %}10pt{% endif %};
font-size: {% if is_portrait %}24pt{% elif is_og %}10pt{% else %}10pt{% endif %};
font-weight: 700;
}
.cell.r-pp { background: #889E33; color: #fff; }
@ -252,11 +252,12 @@
gap: 12px;
}
.portrait-matrix-grid {
/* 5 Werte als Spalten + 1 Spalte fuer die Zeilen-Labels */
/* 5 Werte als Spalten + 1 Spalte fuer die Zeilen-Labels.
Cells 110×110, Label-Spalte 150 → 700×586 px Gesamt. */
display: grid;
grid-template-columns: 130px repeat(5, 88px);
grid-template-rows: 36px repeat(5, 88px);
gap: 4px;
grid-template-columns: 150px repeat(5, 110px);
grid-template-rows: 40px repeat(5, 110px);
gap: 5px;
align-items: stretch;
}
.portrait-matrix-grid .col-label {