From 9f35cbb64aedb62e7a6a31938ee790b359001569 Mon Sep 17 00:00:00 2001 From: Harvey Kandola Date: Sun, 16 Dec 2018 17:21:02 +0000 Subject: [PATCH] Use font antiasliasing Set as default site-wide. --- gui/app/styles/core/text.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gui/app/styles/core/text.scss b/gui/app/styles/core/text.scss index cd1f17b8..bdad33ee 100644 --- a/gui/app/styles/core/text.scss +++ b/gui/app/styles/core/text.scss @@ -40,3 +40,10 @@ .bold-700 { font-weight: 700; } .bold-800 { font-weight: 800; } .bold-900 { font-weight: 900; } + +@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) { + body { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + } +}