From ab2dc10e35d39363bf4cab0451828dc423814ed9 Mon Sep 17 00:00:00 2001 From: cpsdqs Date: Fri, 8 Sep 2017 23:42:58 +0200 Subject: [PATCH] Add Menlo to monospace font stack lest it be Courier on iOS --- html_orig/jssrc/term_screen.js | 2 +- html_orig/sass/app.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html_orig/jssrc/term_screen.js b/html_orig/jssrc/term_screen.js index 59e7dd4..264a802 100644 --- a/html_orig/jssrc/term_screen.js +++ b/html_orig/jssrc/term_screen.js @@ -73,7 +73,7 @@ class TermScreen { width: 0, height: 0, devicePixelRatio: 1, - fontFamily: '"DejaVu Sans Mono", "Liberation Mono", "Inconsolata", monospace', + fontFamily: '"DejaVu Sans Mono", "Liberation Mono", "Inconsolata", "Menlo", monospace', fontSize: 20, gridScaleX: 1.0, gridScaleY: 1.2, diff --git a/html_orig/sass/app.scss b/html_orig/sass/app.scss index 2b9a473..6177e38 100755 --- a/html_orig/sass/app.scss +++ b/html_orig/sass/app.scss @@ -20,7 +20,7 @@ $c-form-highlight-a: #2ea1f9; $c-modal-bg: #242426; -$screen-stack: "DejaVu Sans Mono", "Liberation Mono", "Inconsolata", monospace; +$screen-stack: "DejaVu Sans Mono", "Liberation Mono", "Inconsolata", "Menlo", monospace; @function dist($x) { @return modular-scale($x, 1rem, $golden);