For some reason, box-shadow mixin returns a value that is considered by the Invalid browser. Why is this happening? How to fix?
In my .scss :
@import "compass/css3/box-shadow"; @include box-shadow(0px 1px 5px 1px #c4c3c3);
Returns this:
-webkit-box-shadow: compact(0px 1px 5px 1px #c4c3c3, false, false, false, false, false, false, false, false, false); -moz-box-shadow: compact(0px 1px 5px 1px #c4c3c3, false, false, false, false, false, false, false, false, false); box-shadow: compact(0px 1px 5px 1px #c4c3c3, false, false, false, false, false, false, false, false, false);

I use compass with webpack sass and css downloaders. This is what is returned in the <script> :

UPD
This seems to be a node-sass problem . sass-loader uses node-sass , and node-sass not compatible with the compass. https://github.com/sass/node-sass/issues/1004