diff --git a/src/components/messaging/MessageAttachment.tsx b/src/components/messaging/MessageAttachment.tsx index 3adff50..c31311f 100644 --- a/src/components/messaging/MessageAttachment.tsx +++ b/src/components/messaging/MessageAttachment.tsx @@ -13,7 +13,7 @@ import AttachmentPreviewModal from "../modals/AttachmentPreviewModal"; const Attachment = styled.div<{ withPointer?: boolean }>` cursor: ${(props) => (props.withPointer ? "pointer" : "default")}; - width: min-content; + width: fit-content; padding: 2px 0; `;