From 9410e6edaf5ecc9ae0049e4a14f29b66c42fd910 Mon Sep 17 00:00:00 2001 From: Niklas Wagner Date: Sat, 14 Jul 2018 14:14:09 +0200 Subject: [PATCH] [Typography] Fix display2 cuts off the bottom of a 'g' (#12146) --- packages/material-ui/src/styles/createTypography.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/material-ui/src/styles/createTypography.js b/packages/material-ui/src/styles/createTypography.js index 5cef547e33de95..7b312ba500e21a 100644 --- a/packages/material-ui/src/styles/createTypography.js +++ b/packages/material-ui/src/styles/createTypography.js @@ -61,7 +61,7 @@ export default function createTypography(palette: Object, typography: Object | F fontSize: pxToRem(45), fontWeight: fontWeightRegular, fontFamily, - lineHeight: `${round(48 / 45)}em`, + lineHeight: `${round(51 / 45)}em`, marginLeft: '-.02em', color: palette.text.secondary, ...allVariants,