Fixed Tabs, added flex-basis mixin

This commit is contained in:
2018-06-27 08:09:51 +10:00
parent 0c0c1fccb2
commit 96cea1dc86

View File

@ -6,7 +6,7 @@
* https://github.com/mastastealth/sass-flex-mixin/blob/master/_flex.scss * https://github.com/mastastealth/sass-flex-mixin/blob/master/_flex.scss
* *
* Version: * Version:
* 1.0.0 - 2018/02/23 * 1.0.1 - 2018/06/27
*/ */
//Flex/Flexbox //Flex/Flexbox
@ -157,3 +157,11 @@
-ms-flex-positive: $int; -ms-flex-positive: $int;
flex-grow: $int; flex-grow: $int;
} }
//Flex basis
@mixin t-flex-basis($value: auto) {
-webkit-flex-basis: $value;
-moz-flex-basis: $value;
-ms-flex-preferred-size: $value;
flex-basis: $value;
}