From 3c00820382f599de26ba9d3d1e6f0aa44e2e521b Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Tue, 30 May 2023 09:04:04 -0400 Subject: [PATCH] Add 0 to HStack spacing --- app/soapbox/components/ui/hstack/hstack.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/soapbox/components/ui/hstack/hstack.tsx b/app/soapbox/components/ui/hstack/hstack.tsx index fcd35d16c..1efd956c6 100644 --- a/app/soapbox/components/ui/hstack/hstack.tsx +++ b/app/soapbox/components/ui/hstack/hstack.tsx @@ -18,6 +18,7 @@ const alignItemsOptions = { }; const spaces = { + 0: 'space-x-0', [0.5]: 'space-x-0.5', 1: 'space-x-1', 1.5: 'space-x-1.5',