From d8cd85be629fc60f6c16b63f1f914afe29bd3990 Mon Sep 17 00:00:00 2001 From: RunDevelopment Date: Thu, 21 Mar 2024 15:22:44 +0100 Subject: [PATCH] Fix padding on number inputs --- .../components/inputs/elements/AdvanceNumberInput.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/renderer/components/inputs/elements/AdvanceNumberInput.tsx b/src/renderer/components/inputs/elements/AdvanceNumberInput.tsx index bd8607456..453fa6793 100644 --- a/src/renderer/components/inputs/elements/AdvanceNumberInput.tsx +++ b/src/renderer/components/inputs/elements/AdvanceNumberInput.tsx @@ -202,7 +202,9 @@ export const AdvancedNumberInput = memo( borderRightRadius="md" h={inputHeight} m={0} - p={1} + pl={1} + pr={4} + py={1} size={1} w={inputWidth} onKeyDown={onKeyDown} @@ -255,7 +257,8 @@ export const AdvancedNumberInput = memo(