From 69a10f46775f569d067789f2e4fd8f4822308fa0 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 26 Dec 2022 01:48:21 -0800 Subject: [PATCH] Fix number input button styles --- src/renderer/components/input/index.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/renderer/components/input/index.tsx b/src/renderer/components/input/index.tsx index ed29beee..49583a1e 100644 --- a/src/renderer/components/input/index.tsx +++ b/src/renderer/components/input/index.tsx @@ -100,15 +100,17 @@ const StyledNumberInput = styled(MantineNumberInput)` } } - /* & .mantine-NumberInput-rightSection { - color: var(--input-placeholder-fg); - background: var(--input-bg); - } */ - & .mantine-NumberInput-controlUp { svg { - color: white; - fill: white; + color: var(--btn-default-fg); + fill: var(--btn-default-fg); + } + } + + & .mantine-NumberInput-controlDown { + svg { + color: var(--btn-default-fg); + fill: var(--btn-default-fg); } }