mike7515 / code-beautifier

MIT License
19 stars 5 forks source link

Properly format @media features #30

Closed softdays closed 4 years ago

softdays commented 4 years ago

At the moment when you write code as:

@media only screen and (max-width        :      1024px) {

Beautify result is:

@media only screen and (max-width : 1024px) {

But it should be:

@media only screen and (max-width: 1024px) {
softdays commented 4 years ago

Sorry this is a js-beautify issue