Created
April 13, 2015 22:23
-
-
Save mohsin/61673e3ccd676f1b4cfc to your computer and use it in GitHub Desktop.
Font Smoothing mixin
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 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