-
-
Notifications
You must be signed in to change notification settings - Fork 60
Closed
Description
I'd like to distinguish between @use+@import
directives and the rest of at-rules.
In v5, I had a rule to keep at-rules
at the bottom.
So the order was like
.main {
display: grid;
...
@include media-breakpoint-down(lg) {
grid-template-areas: "header" "content";
grid-template-columns: 100%;
}
}
however, since v6 it also takes all @import
statements and put's them at the end of file which does not play well. The @import usually imports something that's used afterwards so it cannot be at the end of the file.
Activity
hudochenkov commentedon Jan 6, 2023
Looks like a regression. I'll take a look in coming days.
hudochenkov commentedon Jan 6, 2023
@simPod I just released 6.0.1. Could you check if it fixed for you?
simPod commentedon Jan 6, 2023
Yup, seems like there are no more issues now. Thanks!
hudochenkov commentedon Jan 6, 2023
Thank you for reporting!