mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
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:
parent
4b02d5aec0
commit
d19613e7e3
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue