From 9dea46bc8a1a533fbc04f1737256d291892b8ba8 Mon Sep 17 00:00:00 2001 From: Riedler Date: Sat, 18 Oct 2025 00:00:00 +0000 Subject: [PATCH] Ensure attachment descriptions fill full width Was noticeable by e.g. the scrollbar being shown somewhere inside the container and not being able to scroll near the edges if each line of text was sufficiently short. Directly implements the suggesstion from https://akkoma.dev/AkkomaGang/akkoma-fe/issues/456#issuecomment-15047 --- src/components/attachment/attachment.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/attachment/attachment.scss b/src/components/attachment/attachment.scss index 36712fd2..b676298a 100644 --- a/src/components/attachment/attachment.scss +++ b/src/components/attachment/attachment.scss @@ -129,6 +129,8 @@ max-height: 200px; overflow-y: auto; scrollbar-color: var(--border) #0000; + width: 100%; + box-sizing: border-box; .status-popover & { text-overflow: ellipsis;