From 3c11e939e3c77a2a4707344f92e1249db3e1157b Mon Sep 17 00:00:00 2001 From: Johan Girod Date: Fri, 15 Sep 2023 11:39:58 +0200 Subject: [PATCH] Corrige le spacing --- site/source/design-system/layout/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/source/design-system/layout/index.tsx b/site/source/design-system/layout/index.tsx index eaad09517..36dd814ae 100644 --- a/site/source/design-system/layout/index.tsx +++ b/site/source/design-system/layout/index.tsx @@ -31,5 +31,5 @@ export function Spacing(props: SpacingProps) { } const SpacingStyled = styled.div<{ $size: keyof Theme['spacings'] }>` - height: ${({ theme, $size }) => theme.spacings[$size]}; + min-height: ${({ theme, $size }) => theme.spacings[$size]}; `