remove macos font smoothing in css

https://dbushell.com/2024/11/05/webkit-font-smoothing/
This commit is contained in:
Pagwin 2024-11-06 17:15:13 -05:00
parent 3641a0290a
commit 36c0f47786
No known key found for this signature in database
GPG key ID: 81137023740CA260
2 changed files with 2 additions and 1 deletions

2
TODO
View file

@ -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" get preferred font setup https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face (see also notes) set font-display to "swap"

View file

@ -9,6 +9,7 @@ body {
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
font-family: Georgia, serif; font-family: Georgia, serif;
-webkit-font-smoothing: antialiased;
} }