SE7ENSKY / group-css-media-queries

CSS postprocessing: group media queries. Useful for postprocessing preprocessed CSS files.
MIT License
100 stars 19 forks source link

width & height #21

Open ashatova opened 6 years ago

ashatova commented 6 years ago

Hi! When we use min and max statements result is sorted by max-width but not by max-height:

Input

@media (max-width:479px) and (max-height:699px) {
}

@media (max-width:640px) and (max-height:621px) {
}

Result


@media (max-width:640px) and (max-height:621px) {
}

@media (max-width:479px) and (max-height:699px) {
}