Skip to content

Commit c6996bd

Browse files
fix(ui): Better tooltip for event timestamps (#39021)
1 parent 123123b commit c6996bd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

static/app/views/organizationGroupDetails/eventToolbar.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class GroupEventToolbar extends Component<Props> {
7474
const dateReceived = evt.dateReceived ? moment(evt.dateReceived) : null;
7575

7676
return (
77-
<DescriptionList className="flat">
77+
<DescriptionList>
7878
<dt>Occurred</dt>
7979
<dd>
8080
{dateCreated.format('ll')}
@@ -234,10 +234,11 @@ const LinkContainer = styled('span')`
234234
`;
235235

236236
const DescriptionList = styled('dl')`
237+
display: grid;
238+
grid-template-columns: max-content 1fr;
239+
gap: ${space(0.75)} ${space(1)};
237240
text-align: left;
238241
margin: 0;
239-
min-width: 200px;
240-
max-width: 250px;
241242
`;
242243

243244
export default GroupEventToolbar;

0 commit comments

Comments
 (0)