Skip to content

Instantly share code, notes, and snippets.

@bogdansoare
Last active August 29, 2015 14:04
Show Gist options
  • Save bogdansoare/3cbcd791174c26da3f0e to your computer and use it in GitHub Desktop.
Save bogdansoare/3cbcd791174c26da3f0e to your computer and use it in GitHub Desktop.
Better font-rendering on OSX
@mixin font-smoothing($value: on) {
@if $value == on {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@else {
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: auto;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment