Browse Source

fix(alerts): Adjust font size of incidents list (#33985)

Scott Cooper 2 years ago
parent
commit
9803dbe949
1 changed files with 6 additions and 2 deletions
  1. 6 2
      static/app/views/alerts/list/index.tsx

+ 6 - 2
static/app/views/alerts/list/index.tsx

@@ -210,7 +210,7 @@ class IncidentsList extends AsyncComponent<Props, State & AsyncComponent['state'
     return (
       <Fragment>
         {this.tryRenderOnboarding() ?? (
-          <PanelTable
+          <StyledPanelTable
             isLoading={showLoadingIndicator}
             isEmpty={incidentList?.length === 0}
             emptyMessage={t('No incidents exist for the current query.')}
@@ -244,7 +244,7 @@ class IncidentsList extends AsyncComponent<Props, State & AsyncComponent['state'
                 ))
               }
             </Projects>
-          </PanelTable>
+          </StyledPanelTable>
         )}
         <Pagination pageLinks={incidentListPageLinks} />
       </Fragment>
@@ -318,6 +318,10 @@ function IncidentsListContainer(props: Props) {
   );
 }
 
+const StyledPanelTable = styled(PanelTable)`
+  font-size: ${p => p.theme.fontSizeMedium};
+`;
+
 const StyledAlert = styled(Alert)`
   margin-bottom: ${space(1.5)};
 `;