From 75fd05a3d7bcda88c481c13b537bfa8993f65263 Mon Sep 17 00:00:00 2001 From: Timothy Armes Date: Wed, 25 Sep 2024 17:59:04 +0200 Subject: [PATCH] Rebase changes --- src/components/form/RadioGroupField.tsx | 2 +- src/components/form/Select.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/form/RadioGroupField.tsx b/src/components/form/RadioGroupField.tsx index 4e7725d..7607f76 100644 --- a/src/components/form/RadioGroupField.tsx +++ b/src/components/form/RadioGroupField.tsx @@ -92,7 +92,7 @@ export const RadioGroupField = < value={option.value} className={({ checked }) => twMerge( - "flex flex-1 cursor-pointer items-center justify-center rounded-lg border px-5 py-3 text-center text-sm font-medium focus:outline-none", + "flex flex-1 cursor-pointer items-center justify-center rounded-lg border px-5 py-3 text-center font-medium focus:outline-none", "border-gray-300 bg-gray-50 text-gray-900", "dark:border-gray-600 dark:bg-gray-700 dark:text-white", checked && diff --git a/src/components/form/Select.tsx b/src/components/form/Select.tsx index 3dabc28..d1551d2 100644 --- a/src/components/form/Select.tsx +++ b/src/components/form/Select.tsx @@ -26,7 +26,7 @@ export const classNames = ( indicatorSeparator: () => "w-px text-gray-900 dark:text-white", control: (state) => twMerge( - "group flex w-full items-center justify-between rounded-lg border p-2.5 text-sm", + "group flex w-full items-center justify-between rounded-lg border p-2.5", "border-gray-300 bg-gray-50 text-gray-900 focus-within:border-primary-500 focus-within:ring-primary-500", "dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus-within:border-primary-500 dark:focus-within:ring-primary-500",