From d19613e7e3c71dcc0bbe7a770ac6fb9ce83b6021 Mon Sep 17 00:00:00 2001 From: Gabriel Hernandez Date: Thu, 18 May 2023 16:57:55 +0100 Subject: [PATCH] add default line height to body (#11768) is related to this PR https://github.com/fleetdm/fleet/pull/11711 I meant to put this on the `body` selector, not `.body-wrapper` --- frontend/styles/global/_global.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/styles/global/_global.scss b/frontend/styles/global/_global.scss index 7da0fb0da9..b4afbe9d20 100644 --- a/frontend/styles/global/_global.scss +++ b/frontend/styles/global/_global.scss @@ -18,6 +18,8 @@ body { html, body { height: 100%; + // desired default line-height for text is 1.5x the font size. + line-height: 1.5; .__react_component_tooltip { text-align: center; @@ -62,8 +64,6 @@ a { padding: $pad-xlarge; border-radius: 3px; background-color: $core-white; - // desired default line-height for text is 1.5x the font size. - line-height: 1.5; } .has-sidebar {