Files
popov.link/_scss/utilities/_textsizeadjust.scss
T

15 lines
449 B
SCSS
Raw Normal View History

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