Twenty Twelve: fix incorrect math in style.css rem example calculation, props TomasM. Closes #22019.
git-svn-id: http://core.svn.wordpress.org/trunk@22069 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9f32de9496
commit
b4176c827e
|
@ -31,7 +31,7 @@ $line-height: 24;
|
||||||
* Set a font-size and then set a line-height based on the font-size
|
* Set a font-size and then set a line-height based on the font-size
|
||||||
font-size: 16px
|
font-size: 16px
|
||||||
font-size: 1.142857143rem; (16 / $rembase)
|
font-size: 1.142857143rem; (16 / $rembase)
|
||||||
line-height: 1.846153846; ($line-height / 16)
|
line-height: 1.5; ($line-height / 16)
|
||||||
|
|
||||||
---------- Vertical spacing
|
---------- Vertical spacing
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue