aboutsummaryrefslogtreecommitdiff
path: root/_scss/utilities/_textsizeadjust.scss
blob: 8a01d4d56922f544c80e6300f90e068bb06f5356 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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;
}