diff --git a/static/app/components/events/eventAttachments.tsx b/static/app/components/events/eventAttachments.tsx index 8af24e9b8267e2..6f596c785429c8 100644 --- a/static/app/components/events/eventAttachments.tsx +++ b/static/app/components/events/eventAttachments.tsx @@ -156,7 +156,9 @@ function EventAttachmentsContent({event, projectSlug}: EventAttachmentsProps) { > {attachments.map(attachment => ( - {attachment.name} + + {attachment.name} + @@ -221,12 +223,22 @@ const StyledPanelTable = styled(PanelTable)` grid-template-columns: 1fr auto auto; `; +const FlexCenter = styled('div')` + ${p => p.theme.overflowEllipsis}; + display: flex; + align-items: center; +`; + const Name = styled('div')` ${p => p.theme.overflowEllipsis}; + white-space: nowrap; `; const Size = styled('div')` - text-align: right; + display: flex; + align-items: center; + justify-content: flex-end; + white-space: nowrap; `; const AttachmentPreviewWrapper = styled('div')`