From f65f5f927fdd861a7e6a4469aebcae50dffcb3fc Mon Sep 17 00:00:00 2001 From: foisonocean Date: Sun, 22 Jan 2017 10:01:59 +0800 Subject: [PATCH] fix too small font size in non-retina display --- lib/error-debug.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/error-debug.js b/lib/error-debug.js index e938c28b8ebe9..0a9c6e37703f0 100644 --- a/lib/error-debug.js +++ b/lib/error-debug.js @@ -41,7 +41,7 @@ const styles = { message: { fontFamily: '"SF Mono", "Roboto Mono", "Fira Mono", consolas, menlo-regular, monospace', - fontSize: '10px', + fontSize: '14px', color: '#fbe7f1', margin: 0, whiteSpace: 'pre-wrap', @@ -50,7 +50,7 @@ const styles = { heading: { fontFamily: '-apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Fira Sans", Avenir, "Helvetica Neue", "Lucida Grande", sans-serif', - fontSize: '13px', + fontSize: '16px', fontWeight: 'bold', color: '#ff84bf', marginBottom: '20px'