From b3f7f2deb226fd7d5298185b41a3b72798d3025f Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Mon, 28 Nov 2022 14:22:30 -0800 Subject: [PATCH] update mdx header sizes for mobile --- src/theme/foundations/textStyles.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/theme/foundations/textStyles.ts b/src/theme/foundations/textStyles.ts index 1a0d605dae..817d6c92e2 100644 --- a/src/theme/foundations/textStyles.ts +++ b/src/theme/foundations/textStyles.ts @@ -18,19 +18,19 @@ export const textStyles = { header1: { fontFamily: 'heading', fontWeight: 700, - fontSize: '2.125rem', + fontSize: { base: '1.875rem', md: '2.125rem' }, letterSpacing: '0.04em', lineHeight: 'normal' }, header2: { fontFamily: 'heading', - fontSize: '1.75rem', + fontSize: { base: '1.5rem', md: '1.75rem' }, letterSpacing: '0.04em', lineHeight: 'normal' }, header3: { fontFamily: 'heading', - fontSize: '1.375rem', + fontSize: { base: '1.25rem', md: '1.375rem' }, letterSpacing: '0.04em', lineHeight: 'normal' },