Skip to content

Instantly share code, notes, and snippets.

@mohsin
Created April 13, 2015 22:23
Show Gist options
  • Save mohsin/61673e3ccd676f1b4cfc to your computer and use it in GitHub Desktop.
Save mohsin/61673e3ccd676f1b4cfc to your computer and use it in GitHub Desktop.
Font Smoothing mixin
//
// Font Smoothing mixin usage
// @include font-smoothing($value)
//
=font-smoothing($value: antialiased)
@if $value == antialiased
-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