From 7f089e1e47750de9a812cd73fc416f08bc3ecdd5 Mon Sep 17 00:00:00 2001 From: Austin Burdine Date: Wed, 24 Aug 2016 08:44:02 -0600 Subject: [PATCH] fix font rendering in ie/edge (#225) --- ghost/admin/app/styles/patterns/global.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ghost/admin/app/styles/patterns/global.css b/ghost/admin/app/styles/patterns/global.css index 9d5ced4fcc..09b138857d 100644 --- a/ghost/admin/app/styles/patterns/global.css +++ b/ghost/admin/app/styles/patterns/global.css @@ -65,7 +65,9 @@ html { width: 100%; /* Prevent elastic scrolling on the whole page */ height: 100%; - font: 62.5%/1.65 var(--font-family); + font-family: var(--font-family); + font-size: 62.5%; + line-height: 1.65; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }