From 98f9776df19a507a79c9fe3662cdf80a4337d368 Mon Sep 17 00:00:00 2001 From: SKairinos Date: Sun, 2 Jul 2023 19:40:38 +0100 Subject: [PATCH] fix: marginX only up MD --- src/theme/ThemedBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme/ThemedBox.tsx b/src/theme/ThemedBox.tsx index 35e81407..7ff86e73 100644 --- a/src/theme/ThemedBox.tsx +++ b/src/theme/ThemedBox.tsx @@ -177,7 +177,7 @@ const ThemedBox: React.FC = ({ ...(withShapes && { paddingY: { xs: 2, sm: 3, md: 5 }, paddingX: { xs: 2, sm: 5, md: 10 }, - marginX: '100px' + marginX: { md: '100px' } }), bgcolor: bgcolor.main, alignItems: 'center',