mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-19 09:06:03 +00:00
16 lines
358 B
Plaintext
16 lines
358 B
Plaintext
.text-adjust(@value) {
|
|
text-size-adjust: @value;
|
|
-ms-text-size-adjust: @value;
|
|
-webkit-text-size-adjust: @value;
|
|
}
|
|
|
|
// The 'flex' shorthand
|
|
// - applies to: flex items
|
|
// <positive-number>, initial, auto, or none
|
|
.flex(@columns: initial) {
|
|
-webkit-flex: @columns;
|
|
-moz-flex: @columns;
|
|
-ms-flex: @columns;
|
|
flex: @columns;
|
|
}
|