Last active
September 28, 2017 01:27
-
-
Save linmic/a892a6d1d6d22d0db268d2e7418f8c32 to your computer and use it in GitHub Desktop.
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
body { | |
... | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
text-rendering: optimizeLegibility; | |
... | |
} | |
/* do this instead */ | |
#wrapper { | |
... | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
text-rendering: optimizeLegibility; | |
... | |
.component { ... } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment