Let us add more then one selector to media queries!

It would be great to be able to add more then one selector/rule to media queries using a button so we dont need to flood our code with unnecessary media queries.

E.g ,instead of:

@media (max-width: 576px) {
  #p1 { font-size: 20px;}}

@media (max-width: 576px) {
  #p2 { font-size: 30px;}}

We do this like normal flow would be:

    @media (max-width: 576px) {
  #p1 { font-size: 20px;}
  #p2 { font-size: 30px;}}

I don't use it yet, so don't shoot the messenger LOL, but wouldn't that be something you would do with Sass?

The CSS editor works the way it does for simplicity. But when exported, your code is minified and these blocks are merged into one media query block. If you need more control, you can write SASS directly.