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`
This commit is contained in:
Gabriel Hernandez 2023-05-18 16:57:55 +01:00 committed by GitHub
parent 4b02d5aec0
commit d19613e7e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {