Mar 31, 2017
0
Level 3
mix.sass -webkit-flex-wrap ISSUE
Hello,
I've been trying to compile a few scss files that use mixins which include -webkit-flex-wrap etc...
However many webkit attributes are being stripped in the final build.
I use mix.sass, i've tried disabling autoprefix but nothing happens.
@import 'resources/assets/sass/guest/_flex.scss'; @import 'resources/assets/sass/guest/_settings.scss';
#landing-page { @include flexbox; }
mix.sass([ 'guest/app.scss',
@mixin flexbox { display: -webkit-box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; }
Any ideas on how to fully process _flex mixins to the letter?
Regards!
Please or to participate in this conversation.