1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-25 11:42:30 +01:00

fix attachment container being too wide

This commit is contained in:
Puyodead1 2023-12-08 13:39:05 -05:00
parent cfc29509f7
commit 2304ed8ea7
No known key found for this signature in database
GPG Key ID: BA5F91AAEF68E5CE

View File

@ -16,6 +16,7 @@ import AttachmentPreviewModal from "../modals/AttachmentPreviewModal";
const Attachment = styled.div<{ withPointer?: boolean }>`
cursor: ${(props) => (props.withPointer ? "pointer" : "default")};
padding: 2px 0;
width: min-content;
`;
const Image = styled.img`