Closed
Description
Input:
.article {
.title {
@statement arguments;
color: blue;
}
}
Expected:
.article .title {
@statement arguments; /* Should stay inside ".article .title" rule set */
color: blue;
}
Actual:
.article .title {
color: blue;
}
@statement arguments; /* Appears outside */
I see how this may be useful for @media queries, but for other PostCSS plugins, such as postcss-simple-extend where the context is important, the @Statement should stay inside.