From 4c5fa0750b76d5d734f22c630fb164faa28813ad Mon Sep 17 00:00:00 2001 From: zackslash Date: Sat, 1 Jul 2023 20:45:55 +0100 Subject: [PATCH] fix label-font-family typo (#157) --- src/renderer/components/date-picker/index.tsx | 2 +- src/renderer/components/input/index.tsx | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/renderer/components/date-picker/index.tsx b/src/renderer/components/date-picker/index.tsx index 09e96359..7d6a66f7 100644 --- a/src/renderer/components/date-picker/index.tsx +++ b/src/renderer/components/date-picker/index.tsx @@ -26,7 +26,7 @@ const StyledDatePicker = styled(MantineDatePicker)` } & .mantine-DatePicker-label { - font-family: var(--label-font-faimly); + font-family: var(--label-font-family); } & .mantine-DateRangePicker-disabled { diff --git a/src/renderer/components/input/index.tsx b/src/renderer/components/input/index.tsx index 6bf2e339..6a8f63cd 100644 --- a/src/renderer/components/input/index.tsx +++ b/src/renderer/components/input/index.tsx @@ -77,7 +77,7 @@ const StyledTextInput = styled(MantineTextInput)` & .mantine-TextInput-label { margin-bottom: 0.5rem; - font-family: var(--label-font-faimly); + font-family: var(--label-font-family); } & .mantine-TextInput-disabled { @@ -129,7 +129,7 @@ const StyledNumberInput = styled(MantineNumberInput)` & .mantine-NumberInput-label { margin-bottom: 0.5rem; - font-family: var(--label-font-faimly); + font-family: var(--label-font-family); } & .mantine-NumberInput-disabled { @@ -163,7 +163,7 @@ const StyledPasswordInput = styled(MantinePasswordInput)` & .mantine-PasswordInput-label { margin-bottom: 0.5rem; - font-family: var(--label-font-faimly); + font-family: var(--label-font-family); } & .mantine-PasswordInput-disabled { @@ -197,7 +197,7 @@ const StyledFileInput = styled(MantineFileInput)` & .mantine-FileInput-label { margin-bottom: 0.5rem; - font-family: var(--label-font-faimly); + font-family: var(--label-font-family); } & .mantine-FileInput-disabled { @@ -231,7 +231,7 @@ const StyledJsonInput = styled(MantineJsonInput)` & .mantine-JsonInput-label { margin-bottom: 0.5rem; - font-family: var(--label-font-faimly); + font-family: var(--label-font-family); } & .mantine-JsonInput-disabled { @@ -261,7 +261,7 @@ const StyledTextarea = styled(MantineTextarea)` & .mantine-Textarea-label { margin-bottom: 0.5rem; - font-family: var(--label-font-faimly); + font-family: var(--label-font-family); } & .mantine-Textarea-disabled {