From 1d75719a99d0eae4af05ad42d2efa822eaf12d41 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Mon, 9 Jan 2023 10:51:41 +0100 Subject: [PATCH] theme: fix two lingering pxpx Signed-off-by: Patrik Oldsberg --- packages/theme/src/v5/defaultComponentThemes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/theme/src/v5/defaultComponentThemes.ts b/packages/theme/src/v5/defaultComponentThemes.ts index eec52e1c8b..bd29ad38c5 100644 --- a/packages/theme/src/v5/defaultComponentThemes.ts +++ b/packages/theme/src/v5/defaultComponentThemes.ts @@ -187,12 +187,12 @@ export const defaultComponentThemes: ThemeOptions['components'] = { color: theme.palette.grey[500], width: theme.spacing(3), height: theme.spacing(3), - margin: `0 ${theme.spacing(0.75)}px 0 -${theme.spacing(0.75)}`, + margin: `0 ${theme.spacing(0.75)} 0 -${theme.spacing(0.75)}`, }), deleteIconSmall: ({ theme }) => ({ width: theme.spacing(2), height: theme.spacing(2), - margin: `0 ${theme.spacing(0.5)}px 0 -${theme.spacing(0.5)}`, + margin: `0 ${theme.spacing(0.5)} 0 -${theme.spacing(0.5)}`, }), }, },