diff --git a/landing/fragments/landing-hero/src/hero.component.tsx b/landing/fragments/landing-hero/src/hero.component.tsx index 11e47004..b064f06c 100644 --- a/landing/fragments/landing-hero/src/hero.component.tsx +++ b/landing/fragments/landing-hero/src/hero.component.tsx @@ -29,7 +29,7 @@ export const Hero = () => { - + { - - = ({ divider = true, ...props }: ItemProps) => borderRadius={['little', 'ordinary']} border='thinnestGhost' > - + {props.sequenceNumber} diff --git a/ui/input/src/styles/shape/input.shape-styles.ts b/ui/input/src/styles/shape/input.shape-styles.ts index 469419d0..4f6077d2 100644 --- a/ui/input/src/styles/shape/input.shape-styles.ts +++ b/ui/input/src/styles/shape/input.shape-styles.ts @@ -6,7 +6,7 @@ import { prop } from 'styled-tools' import { switchProp } from 'styled-tools' const normalSizeNormallRadiiStyles = createShapeStyles({ - fontFamily: 'Helvetica', + fontFamily: 'HelveticaRegular', fontWeight: 400, fontSize: 16, size: 56, @@ -16,7 +16,7 @@ const normalSizeNormallRadiiStyles = createShapeStyles({ }) const bigSizeRegularRadiiStyles = createShapeStyles({ - fontFamily: 'Helvetica', + fontFamily: 'HelveticaRegular', fontWeight: 400, fontSize: 18, size: 62, @@ -26,7 +26,7 @@ const bigSizeRegularRadiiStyles = createShapeStyles({ }) export const textareaStyles: styleFn = ifProp(prop('textarea', true), { - fontFamily: 'Helvetica', + fontFamily: 'HelveticaRegular', fontWeight: 400, fontSize: 18, paddingTop: 16, diff --git a/ui/theme/src/global.styles.tsx b/ui/theme/src/global.styles.tsx index c606a33a..0c9d6c69 100644 --- a/ui/theme/src/global.styles.tsx +++ b/ui/theme/src/global.styles.tsx @@ -23,7 +23,6 @@ const GlobalStyles = () => ( #__next { margin: 0; height: 100%; - font: HelveticaRegular; } `} /> diff --git a/ui/theme/src/theme/fonts.ts b/ui/theme/src/theme/fonts.ts index 6d16158a..069b22be 100644 --- a/ui/theme/src/theme/fonts.ts +++ b/ui/theme/src/theme/fonts.ts @@ -1,8 +1,7 @@ const fonts = { - primary: 'Helvetica', + primary: 'HelveticaRegular', secondary: 'GellaDisplay', light: 'HelveticaLight', - regular: 'HelveticaRegular', } export { fonts }