From c218694421cb3c68d43bdaef4968a723c5ba97ff Mon Sep 17 00:00:00 2001 From: Ben Gott Date: Mon, 26 Sep 2016 17:54:17 -0500 Subject: [PATCH 1/2] Use Roboto Mono font instead of Space Mono --- packages/crater/lib/stylesheets/_typography.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/crater/lib/stylesheets/_typography.scss b/packages/crater/lib/stylesheets/_typography.scss index af84b967..98b3f42d 100644 --- a/packages/crater/lib/stylesheets/_typography.scss +++ b/packages/crater/lib/stylesheets/_typography.scss @@ -3,5 +3,5 @@ } @mixin secondary-font{ - font-family: 'Space Mono', monospace; -} \ No newline at end of file + font-family: 'Roboto Mono', monospace; +} From fefbdcd28dd5bd08c61cacf1c9f148225bb2fd21 Mon Sep 17 00:00:00 2001 From: Ben Gott Date: Wed, 28 Sep 2016 10:08:27 -0500 Subject: [PATCH 2/2] Scratch that. Use Space Mono & disable ligatures Thanks @SachaG for educating me about ligatures! --- packages/crater/lib/stylesheets/_typography.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/crater/lib/stylesheets/_typography.scss b/packages/crater/lib/stylesheets/_typography.scss index 98b3f42d..0881490c 100644 --- a/packages/crater/lib/stylesheets/_typography.scss +++ b/packages/crater/lib/stylesheets/_typography.scss @@ -3,5 +3,6 @@ } @mixin secondary-font{ - font-family: 'Roboto Mono', monospace; + font-family: 'Space Mono', monospace; + font-variant-ligatures: no-common-ligatures; }