From 73e9c38042235502c69b500ac238d2226e33de19 Mon Sep 17 00:00:00 2001 From: philippe-lavoie Date: Mon, 20 Jan 2020 16:09:47 -0500 Subject: [PATCH] Removing lineHeight hard code. With lineHeight set to set 1, the bottom of the letters like 'p' gets truncated for most fonts. --- lib/components/src/blocks/Typeset.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/components/src/blocks/Typeset.tsx b/lib/components/src/blocks/Typeset.tsx index d88c7d6791e4..6e50f4dbbac6 100644 --- a/lib/components/src/blocks/Typeset.tsx +++ b/lib/components/src/blocks/Typeset.tsx @@ -15,7 +15,6 @@ const Label = styled.div<{}>(({ theme }) => ({ })); const Sample = styled.div({ - lineHeight: 1, overflow: 'hidden', whiteSpace: 'nowrap', textOverflow: 'ellipsis',