elong0527 / r4csr

R for Clinical Study Report and Submission
https://r4csr.org/
Other
70 stars 33 forks source link

Reset `-webkit-font-smoothing` #109

Closed nanxstats closed 1 year ago

nanxstats commented 1 year ago

In the default Bootswatch theme "cosmo" that Quarto book uses, there is this rule:

body {
  -webkit-font-smoothing: antialiased;
}

This rule might not be too useful in web typography today (search "stop fixing font smoothing" and see the opinions).

So I would propose to reset it to:

body { 
  -webkit-font-smoothing: auto; 
}

I will send a PR.