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:
Lance Willett 2012-09-27 18:43:39 +00:00
parent ee6c68ad23
commit 46359883f0
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ $line-height: 24;
* Set a font-size and then set a line-height based on the font-size
font-size: 16px
font-size: 1.142857143rem; (16 / $rembase)
line-height: 1.846153846; ($line-height / 16)
line-height: 1.5; ($line-height / 16)
---------- Vertical spacing