Hello, I have a question regarding the order of media queries. I have created some breakpoints in my test page and assigned them to the selectors for the respective view. Only I ask myself, what am I doing wrong. Pinegrow does not automatically arrange the media queries together, but creates extra entries.
h1 {
font-size: 65px;
}
@media (max-width:320px) {
h1 {
font-size: 44px;
}
}
p {
font-size: 15px;
}
@media (max-width:319px) {
p {
font-size: 23px;
}
}
So I have to copy everything by hand into the respective rule afterwards. Am I doing something wrong here? It would be much easier if the respective elements were placed directly under the respective media queries.