fix: left-align the category list, and drop a clause from the footer note

No reason for the centring — the rows inherited it from a panel that centres its
own content, and a column of names has to read down its left edge wherever it is
dropped. Set explicitly on the row rather than chased upstream, so the list stays
right in the next panel it lands in.

The footer's standing note is one clause now.

249 frontend tests green.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01TqXevQJhxFrM7jJg82cgZN
This commit is contained in:
Daniel 2026-09-11 03:08:04 +02:00
parent 6bb5767871
commit c4c0bb9df5

View file

@ -11,6 +11,7 @@
} }
.cd-row { .cd-row {
text-align: left;
display: flex; display: flex;
align-items: center; align-items: center;
gap: 10px; gap: 10px;
@ -32,6 +33,10 @@
.cd-label { .cd-label {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
/* Explicit, because this list is dropped into panels that centre their own
content a column of names has to read down its left edge wherever it is. */
align-items: flex-start;
text-align: left;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 1px; gap: 1px;