stowball/elf

CSS in imported SASS files is not auto-prefixed

btjanaka opened this issue · 3 comments

I noticed that if one creates a file such as _foo.scss:

html {
  display: flex;
}

And index.scss:

@import "foo";

Then in dist/assets/main.css, display: flexis not auto-prefixed. However, if you put the same snippet from _foo.scss into index.scss, it is properly auto-prefixed. Do you where this issue may be coming from, or if it is an expected feature? Thanks!

Hmmmm let me investigate…

Thanks! Looks like it works for me.

Whoop whoop. Thanks so much for finding this issue. It's so easy to overlook things like this with such a bare-bones project