hudochenkov / postcss-sorting

PostCSS plugin to keep rules and at-rules content in order.
MIT License
517 stars 31 forks source link

Why some flexbox properties go down? #44

Closed lavezzi1 closed 8 years ago

lavezzi1 commented 8 years ago

Typical example:

.block {
    display: flex;
    &__item {
        color: red;
    }
    justify-content: center;
    align-items: center;
}

That is very annoying!

I use yandex preset. How to fix that?