Fix spacing issue on show page (#623)

This commit is contained in:
Félix Malfait
2023-07-12 16:54:16 +02:00
committed by GitHub
parent 6f90046779
commit daad2bab75

View File

@ -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)};
`;