popov.link/_scss/utilities/_textsizeadjust.scss
Valentin Popov 20a83cfb4a
Updated site styles
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-01-23 11:54:12 +04:00

15 lines
449 B
SCSS

// Text Size Adjust
//
// The text-size-adjust CSS property controls the text inflation algorithm used
// on some smartphones and tablets. Other browsers will ignore this property.
//
// Values: none | auto | <percentage>
// Default: none
//
// https://drafts.csswg.org/css-size-adjust/#adjustment-control
@mixin text-size-adjust($value: none) {
-moz-text-size-adjust: $value;
-ms-text-size-adjust: $value;
-webkit-text-size-adjust: $value;
}