From c01c130b7b6bdbc463306de62966b6838839196a Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 9 Feb 2024 11:56:19 -0600 Subject: [PATCH] Add to existing --- src/lib/styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/styles.ts b/src/lib/styles.ts index df9b49260b..263127440f 100644 --- a/src/lib/styles.ts +++ b/src/lib/styles.ts @@ -236,7 +236,7 @@ export function lh( height: number, ): TextStyle { return { - lineHeight: (theme.typography[type].fontSize || 16) * height, + lineHeight: Math.round((theme.typography[type].fontSize || 16) * height), } }