From 8aef7aefd053d501e336eaca516fae56653d8032 Mon Sep 17 00:00:00 2001 From: mrsdizzie Date: Wed, 24 Jun 2020 11:25:40 -0400 Subject: [PATCH] Don't use -webkit-font-smoothing (#12029) Don't change font smoothing via CSS. Linked issue has more details, but this seems fowned upon in general and a was also removed from standards track. Hopefully this will be a part of reverting to a native font stack for Gitea. Fixes #11931 Co-authored-by: techknowlogick --- web_src/less/_base.less | 1 - 1 file changed, 1 deletion(-) diff --git a/web_src/less/_base.less b/web_src/less/_base.less index 08bc178595..a4a0cefcd0 100644 --- a/web_src/less/_base.less +++ b/web_src/less/_base.less @@ -134,7 +134,6 @@ body { background-color: #ffffff; overflow-y: auto; - -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; }