autoprefixer disabled for whole build
Because of /* autoprefixer: off */ statement in lib/_tools.scss autoprefixer is disabled for the entire generated css file when gel-grid is used. Any ideas?
Guess we didn't need it up to now @s1nz . Do you want to turn it on somewhere? And why is that.
I'm using gel-grid as dependency in my project like this:
$gel-breakpoint-sizes: (240px, 400px, 700px, 900px, 1100px);
@import "../../node_modules/gel-grid/grid";
When I compile my main scss file, Autoprefixer is disabled on the whole compiled css, because of /* autoprefixer: off */ in gel-grid/lib/_tools.scss declared at the very top of the file.
According to Autoprefixer guys Off/on applies doesn't work in stream. It applies to whole block which leads to this problem.