Flexbox with 2 items

Hey Guys,

I’m wondering how I’m able to build this in Bricks:

These 2 items are in a section. The image have to be in the middle, while the text on the right side should be on - of course the right side.

Anyone know how to achieve this in Bricks?

Help is much appreciated!

Thanks,
Jordy

I‘d probably just position one of the items absolutely.

Or use a grid with the following column setup:

grid-template-columns: 1fr auto 1fr;

In the grid case you have to set the items‘ grid columns explicitly though to ignore the first column.