I discovered that the flex box mixin isn’t working as it should in iOS6. After a little digging i discovered that the col-33, col-34 css selector is using -webkit-box-flex: 0;
. This looks like it should work, but it doesn’t.
I overwrote this line with -webkit-box-flex: 1;
and achieved the desired affect.
Hope this can help someone else.