// 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 | // Default: none // // https://drafts.csswg.org/css-size-adjust/#adjustment-control @mixin text-size-adjust($value: none) { -webkit-text-size-adjust: $value; -moz-text-size-adjust: $value; -ms-text-size-adjust: $value; }