From 648462b5bdeea469d38501623383d01d5e367436 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 9 Feb 2024 11:55:13 -0600 Subject: [PATCH] Round line height --- src/components/Typography.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Typography.tsx b/src/components/Typography.tsx index 8136b5ef31..b34f51018e 100644 --- a/src/components/Typography.tsx +++ b/src/components/Typography.tsx @@ -15,7 +15,7 @@ export function leading< >(textSize: Size, leading: Leading) { const size = textSize?.fontSize || atoms.text_md.fontSize const lineHeight = leading?.lineHeight || atoms.leading_normal.lineHeight - return size * lineHeight + return Math.round(size * lineHeight) } /** @@ -32,7 +32,7 @@ function normalizeTextStyles(styles: TextStyle[]) { if (s?.lineHeight) { if (s.lineHeight <= 2) { - s.lineHeight = fontSize * s.lineHeight + s.lineHeight = Math.round(fontSize * s.lineHeight) } } else { s.lineHeight = fontSize