Last active
February 21, 2017 17:26
-
-
Save Qoraiche/80a09fc45562e150eec213fc7368e311 to your computer and use it in GitHub Desktop.
use font-smoothing for a smooth font
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
@mixin text-rendring(){ | |
text-rendering: optimizeLegibility !important; | |
-webkit-font-smoothing: antialiased !important; | |
} | |
body { | |
@include text-rendring(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment