diff --git a/package.json b/package.json index 88a118c..ac833cf 100644 --- a/package.json +++ b/package.json @@ -72,5 +72,6 @@ "eslint-plugin-react-hooks": "^5.0.0-canary-7118f5dd7-20230705", "prettier": "^3.1.1", "prettier-plugin-tailwindcss": "^0.5.3" - } + }, + "packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610" } diff --git a/src/components/form/DateField/components/InputDatePicker.tsx b/src/components/form/DateField/components/InputDatePicker.tsx index 6baf583..dfeb470 100644 --- a/src/components/form/DateField/components/InputDatePicker.tsx +++ b/src/components/form/DateField/components/InputDatePicker.tsx @@ -37,7 +37,7 @@ export const InputDatePicker = forwardRef( return (
( inputRef={inputRef} mask={mask ?? ""} className={twMerge( - "w-full border-none bg-transparent text-sm outline-none ring-0 focus:outline-none focus:ring-0 focus:ring-offset-0", + "w-full border-none bg-transparent outline-none ring-0 focus:outline-none focus:ring-0 focus:ring-offset-0", "text-gray-900 dark:text-white", inputClass, )} diff --git a/src/components/form/TextAreaField.tsx b/src/components/form/TextAreaField.tsx index 95548bc..2bd21db 100644 --- a/src/components/form/TextAreaField.tsx +++ b/src/components/form/TextAreaField.tsx @@ -86,7 +86,7 @@ export const TextAreaField = < aria-invalid={hasError} disabled={disabled} className={twMerge( - "flex w-full content-center rounded-lg border p-3 text-sm", + "flex w-full content-center rounded-lg border p-3", "border-gray-300 bg-gray-50 text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500", "dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500", hasError && "!border-orange-700 focus:!border-orange-700", diff --git a/src/components/form/TextField.tsx b/src/components/form/TextField.tsx index d7c751d..7bbb9d0 100644 --- a/src/components/form/TextField.tsx +++ b/src/components/form/TextField.tsx @@ -105,7 +105,7 @@ export const TextField = < aria-invalid={hasError} disabled={disabled} className={twMerge( - "flex w-full content-center rounded-lg border p-3 text-sm", + "flex w-full content-center rounded-lg border p-3", "border-gray-300 bg-gray-50 text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500", "dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500", hasError && "!border-orange-700 focus:!border-orange-700",