fix(dashboard): wrap mission card stats so counts reflow in narrow sidebar

In a narrow resized sidebar the milestones / features / tasks counts ran
off the card edge because .mission-list__item-summary was a non-wrapping
flex row. Switch it to flex-wrap with split row/column gaps so the stats
reflow onto new lines instead of clipping.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-05-06 00:09:33 -07:00
parent 2f439121e0
commit 6ab270cfe2

View File

@@ -789,8 +789,9 @@
.mission-list__item-summary {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: var(--space-md);
gap: var(--space-xs) var(--space-md);
margin-top: var(--space-xs);
}