Browse Source

ref(alerts): Gap over margin idk (#44680)

Evan Purkhiser 2 years ago
parent
commit
4659d93db5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/views/alerts/list/rules/row.tsx

+ 1 - 1
static/app/views/alerts/list/rules/row.tsx

@@ -410,13 +410,13 @@ const FlexCenter = styled('div')`
 `;
 
 const AlertNameWrapper = styled(FlexCenter)<{isIssueAlert?: boolean}>`
+  gap: ${space(2)};
   position: relative;
   ${p => p.isIssueAlert && `padding: ${space(3)} ${space(2)}; line-height: 2.4;`}
 `;
 
 const AlertNameAndStatus = styled('div')`
   ${p => p.theme.overflowEllipsis}
-  margin-left: ${space(2)};
   line-height: 1.35;
 `;