diff --git a/app/soapbox/components/ui/stack/stack.tsx b/app/soapbox/components/ui/stack/stack.tsx index 3398d8df2..bac3ce89b 100644 --- a/app/soapbox/components/ui/stack/stack.tsx +++ b/app/soapbox/components/ui/stack/stack.tsx @@ -21,13 +21,14 @@ const justifyContentOptions = { const alignItemsOptions = { center: 'items-center', + start: 'items-start', }; interface IStack extends React.HTMLAttributes { /** Size of the gap between elements. */ space?: SIZES, /** Horizontal alignment of children. */ - alignItems?: 'center', + alignItems?: 'center' | 'start', /** Vertical alignment of children. */ justifyContent?: 'center', /** Extra class names on the
element. */