Advertisement
Guest User

Untitled

a guest
May 24th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. //
  2. // Font Smoothing mixin usage
  3. // @include font-smoothing($value)
  4. //
  5.  
  6. =font-smoothing($value: antialiased)
  7. @if $value == antialiased
  8. -webkit-font-smoothing: antialiased
  9. -moz-osx-font-smoothing: grayscale
  10. @else
  11. -webkit-font-smoothing: subpixel-antialiased
  12. -moz-osx-font-smoothing: auto
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement