From 511dd3fe419f90c8da788c124a463da02e309f76 Mon Sep 17 00:00:00 2001 From: mrsdizzie Date: Tue, 23 Jun 2020 10:46:05 -0400 Subject: [PATCH] Don't use -webkit-font-smoothing 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 --- 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 08bc1785958b..a4a0cefcd0cf 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; }