From 36c0f47786f87000e8d9f83eb7b1f54157c2fc9e Mon Sep 17 00:00:00 2001 From: Pagwin Date: Wed, 6 Nov 2024 17:15:13 -0500 Subject: [PATCH] remove macos font smoothing in css https://dbushell.com/2024/11/05/webkit-font-smoothing/ --- TODO | 2 +- static/css/layout.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/TODO b/TODO index a13dd1b..fd893cf 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,4 @@ -get RSS feed up and running +get RSS feed up and running (add utm stuff) get preferred font setup https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face (see also notes) set font-display to "swap" diff --git a/static/css/layout.css b/static/css/layout.css index 8044cbe..341b36e 100644 --- a/static/css/layout.css +++ b/static/css/layout.css @@ -9,6 +9,7 @@ body { padding: 0px; margin: 0px; font-family: Georgia, serif; + -webkit-font-smoothing: antialiased; }