Skip to content

Instantly share code, notes, and snippets.

@menslow
Last active February 26, 2017 15:15
Show Gist options
  • Save menslow/6600454 to your computer and use it in GitHub Desktop.
Save menslow/6600454 to your computer and use it in GitHub Desktop.
Sass mixin for text-size-adjust
// 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