From c50102e153bc34d1ee9f4d751a6c482946594f8c Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Sat, 20 Apr 2013 16:09:42 +0100 Subject: [PATCH] Font size set in body, not CSS reset This is because we can't update the editor preview if the font size is set in the CSS reset --- lib/settings-screen.css | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/settings-screen.css b/lib/settings-screen.css index 8818f17..fa607fc 100644 --- a/lib/settings-screen.css +++ b/lib/settings-screen.css @@ -12,15 +12,16 @@ table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; outline: 0; - font-size: 12px; + /*font-size: 12px;*/ vertical-align: top; } body {overflow: hidden; - -webkit-user-select: none; - -moz-user-select: none; - -o-user-select:none; - user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -o-user-select:none; + user-select: none; + font-size: 12px; } h1 {font-size: 36px; font-weight: normal; color: #888; margin-bottom: 20px}