Last active
February 26, 2017 15:15
-
-
Save menslow/6600454 to your computer and use it in GitHub Desktop.
Sass mixin for text-size-adjust
This file contains 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
// text-size-adjust | |
//------------------------------------------------ | |
// | |
// Values: none (default), auto, 100% | |
// | |
// Reference: | |
// https://developer.mozilla.org/en-US/docs/Web/CSS/text-size-adjust | |
// | |
@mixin text-size-adjust($value: none) { | |
-webkit-text-size-adjust: $value; | |
-moz-text-size-adjust: $value; | |
-ms-text-size-adjust: $value; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment