From 026ba5ddce4ec3d32b72a143c57ab4ec5c63cf8c Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 5 Feb 2026 22:02:11 +0200 Subject: [PATCH] chore(mobile/attachments): improve layout --- apps/client/src/widgets/type_widgets/Attachment.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/apps/client/src/widgets/type_widgets/Attachment.css b/apps/client/src/widgets/type_widgets/Attachment.css index 413d29459..c345b77d4 100644 --- a/apps/client/src/widgets/type_widgets/Attachment.css +++ b/apps/client/src/widgets/type_widgets/Attachment.css @@ -10,6 +10,12 @@ display: flex; justify-content: space-between; align-items: baseline; + + @media (max-width: 991px) { + margin-block: 1em; + flex-direction: column; + gap: 0.5em; + } } /* #endregion */ @@ -42,6 +48,12 @@ display: flex; align-items: center; gap: 1em; + + @media (max-width: 991px) { + gap: 0.5em; + flex-wrap: wrap; + .attachment-title { flex-grow: 1; } + } } .attachment-details {