@joey I did this before in css, I’ll have to look for it later,
But basically change the direction from column to row
Original
.region .container {
display: flex;
flex-direction: column;
}
Override in custom.css
.region.top.left .container {
flex-direction: row;
}
Then put all those in the top-left position