font-smoothing mixin

This commit is contained in:
Adam Bradley
2013-11-27 07:43:00 -06:00
parent 79b0d4aa7e
commit a1688b3771

View File

@@ -191,6 +191,10 @@
@include font-family-monospace();
@include font-shorthand($size, $weight, $line-height);
}
@mixin font-smoothing($font-smoothing) {
-webkit-font-smoothing: $font-smoothing;
font-smoothing: $font-smoothing;
}