CSSReorder
CSSReorder copied to clipboard
Reorder properties inside an @at-root directive (Sass)
I'm using CSSReorder in my .scss files, but it doesn't work when the Sass code is wrapped by an @at-root directive.
Eg:
.parent {
@at-root {
.child-1 {
text-align: center;
max-width: 960px;
position: relative;
margin:0 auto;
}
}
@at-root .child-2 {
text-align: center;
max-width: 960px;
position: relative;
margin:0 auto;
}
}
Same problem with @media directives ex.:
@media (orientation: portrait) {
.node {
properties...
}
}