From daad2bab75e0cd68cc5623ea3d0606df7742160c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Wed, 12 Jul 2023 16:54:16 +0200 Subject: [PATCH] Fix spacing issue on show page (#623) --- front/src/modules/ui/components/property-box/PropertyBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/modules/ui/components/property-box/PropertyBox.tsx b/front/src/modules/ui/components/property-box/PropertyBox.tsx index 288e548c8..68784e524 100644 --- a/front/src/modules/ui/components/property-box/PropertyBox.tsx +++ b/front/src/modules/ui/components/property-box/PropertyBox.tsx @@ -7,7 +7,7 @@ const StyledPropertyBoxContainer = styled.div` border-radius: ${({ theme }) => theme.border.radius.sm}; display: flex; flex-direction: column; - gap: ${({ theme }) => theme.spacing(2)}; + gap: ${({ theme }) => theme.spacing(0.5)}; padding: ${({ theme }) => theme.spacing(2)} ${({ theme }) => theme.spacing(3)}; `;