We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 123123b commit c6996bdCopy full SHA for c6996bd
static/app/views/organizationGroupDetails/eventToolbar.tsx
@@ -74,7 +74,7 @@ class GroupEventToolbar extends Component<Props> {
74
const dateReceived = evt.dateReceived ? moment(evt.dateReceived) : null;
75
76
return (
77
- <DescriptionList className="flat">
+ <DescriptionList>
78
<dt>Occurred</dt>
79
<dd>
80
{dateCreated.format('ll')}
@@ -234,10 +234,11 @@ const LinkContainer = styled('span')`
234
`;
235
236
const DescriptionList = styled('dl')`
237
+ display: grid;
238
+ grid-template-columns: max-content 1fr;
239
+ gap: ${space(0.75)} ${space(1)};
240
text-align: left;
241
margin: 0;
- min-width: 200px;
- max-width: 250px;
242
243
244
export default GroupEventToolbar;
0 commit comments