feat: add Number field preview in settings (#2397)

Closes #2327
This commit is contained in:
Thaïs
2023-11-09 08:30:37 +01:00
committed by GitHub
parent 1f5492b4a7
commit 28779f0fb8
5 changed files with 38 additions and 8 deletions
@@ -6,6 +6,7 @@ const StyledSettingsPageContainer = styled.div<{ width?: number }>`
display: flex;
flex-direction: column;
gap: ${({ theme }) => theme.spacing(8)};
overflow: auto;
padding: ${({ theme }) => theme.spacing(8)};
width: ${({ width }) => (width ? width + 'px' : objectSettingsWidth)};
`;