From d8f698242a5fdaece73c0bc574e760a826fbf875 Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Tue, 30 May 2023 09:02:22 -0400 Subject: [PATCH] Add justify-between to Stack options --- app/soapbox/components/ui/stack/stack.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/soapbox/components/ui/stack/stack.tsx b/app/soapbox/components/ui/stack/stack.tsx index dceaf9214..edc89d1d5 100644 --- a/app/soapbox/components/ui/stack/stack.tsx +++ b/app/soapbox/components/ui/stack/stack.tsx @@ -16,6 +16,7 @@ const spaces = { }; const justifyContentOptions = { + between: 'justify-between', center: 'justify-center', end: 'justify-end', };