I have a CSS grid created with Susy, with two asides and a content section, like this:
|1| |2| |content|
|content|
|content|
The source order is content-1-2, but the above is easy enough using push() and pull().
On a narrower screen, I want the asides to be above each other, like this:
|1| |content|
|2| |content|
|content|
I am able to pull them into the same column, but they will simply overlap. How can I make this work?