fix: font size

This commit is contained in:
nafees nazik
2023-09-18 21:51:33 +05:30
committed by Akhil Mohan
parent 7f753b23f8
commit 3be3867579

View File

@@ -46,7 +46,7 @@ type Props = Omit<HTMLAttributes<HTMLTextAreaElement>, "onChange" | "onBlur"> &
};
const commonClassName =
"font-mono text-base leading-5 caret-white border-none outline-none w-full break-all ";
"font-mono text-sm leading-5 caret-white border-none outline-none w-full break-all ";
export const SecretInput = forwardRef<HTMLTextAreaElement, Props>(
({ value, isVisible, onChange, onBlur, isDisabled, onFocus, ...props }, ref) => {