Added the ability to use the xy-cell-base mixin to grow the flex item to take up all available space.
This is effectively the same as: `.flex-child-grow`, found @ https://foundation.zurb.com/sites/docs/flexbox-utilities.html#vanilla-flexbox-helper-classes - But there isn't a way to do this through the SASS mixins.
@elseif ($size == 'shrink') {
flex: 0 0 auto;
}
+ @elseif ($size == 'grow') {
+ flex: 1 0 auto;
+ }
}
/// Resets a cells width (or height if vertical is true) as well as strips its gutters.