Skip to content

Commit

Permalink
review: derive global font from helix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfoster1 committed Jun 20, 2024
1 parent 6dc3ced commit f8925cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/atoms/GlobalStyle/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createGlobalStyle } from 'styled-components'
import { COLORS } from '@opentrons/components'
import { COLORS, PRODUCT } from '@opentrons/components'
import 'typeface-open-sans'
import '@fontsource/dejavu-sans'
import '@fontsource/public-sans'
Expand All @@ -15,7 +15,7 @@ export const GlobalStyle = createGlobalStyle<{}>`
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Public Sans', 'DejaVu Sans', sans-serif;
font-family: ${PRODUCT.TYPOGRAPHY.fontFamily}, 'DejaVu Sans', sans-serif;
}
html,
Expand Down

0 comments on commit f8925cf

Please sign in to comment.