0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-04 08:30:27 +03:00

Updated site styles

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2020-01-23 11:54:12 +04:00
parent d489110896
commit 20a83cfb4a
7 changed files with 29 additions and 73 deletions

View File

@ -1,13 +1,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.
// 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;
-moz-text-size-adjust: $value;
-ms-text-size-adjust: $value;
}