From 4734e8952282c07fd68a1776e1b78817cf2a1ec4 Mon Sep 17 00:00:00 2001 From: Dotty Dotter Date: Thu, 7 May 2026 13:34:02 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Matrix=20groesser=20(110px=20Cells=20sta?= =?UTF-8?q?tt=2088px)=20=E2=80=94=20fuellt=20mehr=20Vertikalraum?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- app/templates/v2/screens/scorecard.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/templates/v2/screens/scorecard.html b/app/templates/v2/screens/scorecard.html index cc0bbcc..8556b55 100644 --- a/app/templates/v2/screens/scorecard.html +++ b/app/templates/v2/screens/scorecard.html @@ -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 {