A small flex: row wrapper. Abstracts all the flex weirdness away into a component.
---import { Row } from 'studiocms:ui/components';---
<Row> <span>Row Item 1</span> <span>Row Item 2</span> <span>Row Item 3</span></Row>align-items: centerYou can pass the alignCenter prop to add the align-items: center CSS property to the row.
---import { Row } from 'studiocms:ui/components';---
<Row alignCenter> <!-- Content --></Row>You can change the gap size of the row via the gapSize prop, which can be set to one of sm, md or lg.
---import { Row } from 'studiocms:ui/components';---
<Row gapSize='sm'> <span>Small Row</span> <span>Small Row</span> <span>Small Row</span></Row><!-- Other examples omitted for simplicity -->