Use a cluster when you want a group of elements beside each other that don’t necessarily take up the full width of the screen.
They cannot position themselves so must be wrapped in an additional layout component. For example:
<.row justify="end"> <.cluster> <.button>Cancel</.button> <.submit primary>Go</.button> </.cluster> </.row>
one
two
three
Additional classes to add to the parent.
Stretches the child elements to full height
A CSS justify-content value
Note: start and end are really flex-start and flex-end
start
end
flex-start
flex-end
A CSS align-items value
<.box border="sm" padding="xs">one</.box> <.box border="sm" padding="xs"> <p>one</p> <p>two</p> <p>three</p> </.box>