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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user