mirror of
https://github.com/yihui/hugo-xmin.git
synced 2024-11-22 00:19:19 +02:00
Make line-height unitless (#56)
With fixed units, the line height is too small for headings that wrap (e.g., long post titles).
This commit is contained in:
parent
a8ae2c5743
commit
50fc665d2a
|
@ -2,7 +2,7 @@ body {
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* header and footer areas */
|
/* header and footer areas */
|
||||||
|
|
Loading…
Reference in New Issue