Browse Source

fix(ui): Alignment of SavedIssueSearches buttons (#42906)

Evan Purkhiser 2 years ago
parent
commit
ec012b2cbf
1 changed files with 5 additions and 1 deletions
  1. 5 1
      static/app/views/issueList/savedIssueSearches.tsx

+ 5 - 1
static/app/views/issueList/savedIssueSearches.tsx

@@ -4,7 +4,7 @@ import styled from '@emotion/styled';
 import orderBy from 'lodash/orderBy';
 
 import {openModal} from 'sentry/actionCreators/modal';
-import Button from 'sentry/components/button';
+import Button, {ButtonLabel} from 'sentry/components/button';
 import {openConfirmModal} from 'sentry/components/confirm';
 import DropdownMenuControl from 'sentry/components/dropdownMenuControl';
 import {MenuItemProps} from 'sentry/components/dropdownMenuItem';
@@ -320,6 +320,10 @@ const StyledItemButton = styled(Button)`
   line-height: ${p => p.theme.text.lineHeightBody};
 
   padding: ${space(1)} ${space(2)};
+
+  ${ButtonLabel} {
+    justify-content: start;
+  }
 `;
 
 const OverflowMenu = styled(DropdownMenuControl)`