gel-grid icon indicating copy to clipboard operation
gel-grid copied to clipboard

autoprefixer disabled for whole build

Open s1nz opened this issue 7 years ago • 2 comments

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?

s1nz avatar Apr 05 '18 14:04 s1nz

Guess we didn't need it up to now @s1nz . Do you want to turn it on somewhere? And why is that.

tsouk avatar Apr 06 '18 12:04 tsouk

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.

s1nz avatar Apr 17 '18 07:04 s1nz