Last active
September 8, 2021 00:26
-
-
Save damianwajer/e3c2fba1e7d69510c070 to your computer and use it in GitHub Desktop.
[CSS] Fix for font smoothing / antialiasing on Mac OS X (too heavy fonts)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.font-fix { | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
text-rendering: optimizeLegibility; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment