From b4176c827ef668efb7a461a170d15a3229fa7bb9 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Thu, 27 Sep 2012 18:43:39 +0000 Subject: [PATCH] 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 --- wp-content/themes/twentytwelve/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-content/themes/twentytwelve/style.css b/wp-content/themes/twentytwelve/style.css index cecb37db21..46be897daf 100644 --- a/wp-content/themes/twentytwelve/style.css +++ b/wp-content/themes/twentytwelve/style.css @@ -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