I have a flex container which has 3 elements inside of it (X, Y, Z).
Currently, X, Y and Z are stacked like a row. However, I want to make Y and Z be stacked like a column without affecting X.
Here is the Codepen which also explains better what I want to achieve:
https://codepen.io/kibezin/pen/qBOQypy
I have tried applying flex-direction: column
: to Y and Z (user's awards and user's sketches) however it doesn't affect them (I guess it can only be applied through the parent node). Is there any way I can achieve this?
Or even better, perhaps using Flexbox is overkill and there's a better alternative?
Thank you.