From 7cd02cee2f88a0385b62108b647a94527023959e Mon Sep 17 00:00:00 2001 From: Chris Cedrone Date: Thu, 30 Nov 2023 15:28:28 -0500 Subject: [PATCH] removing unecessary changeset, tweaking two lines Laura found --- .changeset/feat-expressiveText.md | 5 ----- packages/react-magma-dom/src/components/Typography/index.tsx | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) delete mode 100644 .changeset/feat-expressiveText.md diff --git a/.changeset/feat-expressiveText.md b/.changeset/feat-expressiveText.md deleted file mode 100644 index ff8c359b3..000000000 --- a/.changeset/feat-expressiveText.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-magma-dom': patch ---- - -feat: Updates to the expressive font styles for both desktop and mobile. diff --git a/packages/react-magma-dom/src/components/Typography/index.tsx b/packages/react-magma-dom/src/components/Typography/index.tsx index 610a73ada..8ab1ebba5 100644 --- a/packages/react-magma-dom/src/components/Typography/index.tsx +++ b/packages/react-magma-dom/src/components/Typography/index.tsx @@ -239,7 +239,7 @@ export const heading2XLargeStyles = props => css` font-size: ${props.theme.typographyExpressiveVisualStyles.heading2XLarge .desktop.fontSize}; line-height: ${props.theme.typographyExpressiveVisualStyles.heading2XLarge - .mobile.lineHeight}; + .desktop.lineHeight}; } `}; `; @@ -268,7 +268,7 @@ export const headingXLargeStyles = props => css` font-weight: ${props.theme.typographyExpressiveVisualStyles.headingXLarge .fontWeight}; line-height: ${props.theme.typographyExpressiveVisualStyles.headingXLarge - .desktop.lineHeight}; + .mobile.lineHeight}; @media (min-width: ${props.theme.breakpoints.small}px) { font-size: ${props.theme.typographyExpressiveVisualStyles.headingXLarge