You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If this CSS is input, postcss-import outputs the following warning:
@import must precede all other statements (besides @charset or empty @layer)
This message is true, but doesn't apply to this input. @import does precede all other statements besides empty @layer.
In this case, I think the warning message needs to be something like "@import must be consecutive".
The text was updated successfully, but these errors were encountered:
The following CSS is invalid as the
@import
is not consecutive.Reproduction: https://stackblitz.com/edit/template-sapphi-red-postcss-sass-nzjc5c?file=postcss.js,src%2Finput.css
If this CSS is input, postcss-import outputs the following warning:
This message is true, but doesn't apply to this input.
@import
does precede all other statements besides empty@layer
.In this case, I think the warning message needs to be something like "
@import
must be consecutive".The text was updated successfully, but these errors were encountered: