Skip to content

Stack

Overview

Arrange items vertically with consistent spacing.

html
<div class="o-stack">
    <div></div>
    <div></div>
</div>

Modifiers

Gap

Sets the gap between items.

NameDescription
o-stack--gap-smSmall.
o-stack--gap-mdMedium.
o-stack--gap-lgLarge.
html
<div class="o-stack o-stack--gap-sm">
    <div></div>
    <div></div>
</div>

Justify

Sets the main-axis alignment of items.

NameDescription
o-stack--justify-startStart.
o-stack--justify-centerCenter.
o-stack--justify-endEnd.
o-stack--justify-betweenSpace between.
html
<div class="o-stack o-stack--justify-center">
    <div></div>
    <div></div>
</div>