Skip to content

Commit

Permalink
Fix error fonts (#826)
Browse files Browse the repository at this point in the history
* add "consolas" font for windows

* fix too small font size in non-retina display
  • Loading branch information
Zhao authored and rauchg committed Jan 22, 2017
1 parent 13d6c04 commit 3813f73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/error-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ const styles = {
},

message: {
fontFamily: '"SF Mono", "Roboto Mono", "Fira Mono", menlo-regular, monospace',
fontSize: '10px',
fontFamily: '"SF Mono", "Roboto Mono", "Fira Mono", consolas, menlo-regular, monospace',
fontSize: '14px',
color: '#fbe7f1',
margin: 0,
whiteSpace: 'pre-wrap',
Expand All @@ -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'
Expand Down

0 comments on commit 3813f73

Please sign in to comment.