Skip to content

Commit

Permalink
ref(ui): Change font sizes to constants (#67960)
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper authored Mar 29, 2024
1 parent e6312a2 commit 8aa4997
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions static/app/utils/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -760,13 +760,13 @@ const commonTheme = {
// Relative font sizes
fontSizeRelativeSmall: '0.9em',

fontSizeExtraSmall: '11px',
fontSizeSmall: '12px',
fontSizeMedium: '14px',
fontSizeLarge: '16px',
fontSizeExtraLarge: '18px',
codeFontSize: '13px',
headerFontSize: '22px',
fontSizeExtraSmall: '11px' as const,
fontSizeSmall: '12px' as const,
fontSizeMedium: '14px' as const,
fontSizeLarge: '16px' as const,
fontSizeExtraLarge: '18px' as const,
codeFontSize: '13px' as const,
headerFontSize: '22px' as const,

settings: {
// Max-width for settings breadcrumbs
Expand Down

0 comments on commit 8aa4997

Please sign in to comment.