SE7ENSKY / group-css-media-queries

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

Wrong order of queries after group #25

Open goantonfedko opened 3 years ago

goantonfedko commented 3 years ago

Works wrong ( i have in code: ` @media only screen and (min-width: 1280px) and (min-height: 550px) { width: 350px; }

@media only screen and (min-width: 1280px) and (min-height: 600px) { width: 400px; }

@media only screen and (min-width: 1280px) and (min-height: 650px) { width: 423px; }`

and after grouping it looks like this:

image