fix: allow action buttons to wrap on mobile

Add flex-wrap to .item-actions so all buttons remain visible on
narrow screens. Previously the mark-as-read button was cut off.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ricardo
2026-02-07 00:09:48 +01:00
parent 61819f1aeb
commit 722a884ca3
2 changed files with 2 additions and 1 deletions

View File

@@ -373,6 +373,7 @@
.item-actions {
border-top: 1px solid var(--color-offset);
display: flex;
flex-wrap: wrap;
gap: var(--space-s);
padding-top: var(--space-s);
}