Browse Source

fix(ui): fix Pill font-size (#21296)

* fix(ui): fix Pill font-size

* used theme font-size variables

Co-authored-by: Robin Rendle <robin@erskinedesign.com>
Robin Rendle 4 years ago
parent
commit
48566fc7e5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/static/sentry/app/components/pills.tsx

+ 1 - 1
src/sentry/static/sentry/app/components/pills.tsx

@@ -3,7 +3,7 @@ import styled from '@emotion/styled';
 const Pills = styled('div')`
   display: flex;
   flex-wrap: wrap;
-  font-size: 13px;
+  font-size: ${p => p.theme.fontSizeSmall};
 `;
 
 export default Pills;