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]}; `