fix: padding

This commit is contained in:
nafees nazik
2023-09-19 07:29:44 +05:30
committed by Akhil Mohan
parent f84235eea3
commit 6b8d4c2fea

View File

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