Added flex-grow mixin

This commit is contained in:
2018-03-13 05:16:34 +11:00
parent 8f8af79e38
commit 5f9963ddfb

View File

@ -148,3 +148,12 @@
-ms-flex-direction: $value;
flex-direction: $value;
}
//Flex Grow
@mixin t-flex-grow($int: 0) {
-webkit-box-flex: $int;
-webkit-flex-grow: $int;
-moz-flex-grow: $int;
-ms-flex-positive: $int;
flex-grow: $int;
}