I'm having a few issues understanding how to produce the following layout using Susy Next.
I can't seem to get my head around doing this cleanly in Susy, or at all really.
The source order is the following and may not be changed.
<div class="item a">A</div>
<div class="item b">B</div>
<div class="item c">C</div>
<div class="item d">D</div>
The required layout is on Mobile is like this:
---------
| B |
|-------|
| A |
|-------|
| C |
|-------|
| D |
---------
The required layout is on Desktop is like this:
------------------
| A | B |
|-------|-------|
| D | C |
-----------------
I think this should be easy with Susy but the documentation doesn't help that much.
Thx in advacend for the Help