From 6b8d4c2fea28351a954ee776307cf74ac094fde7 Mon Sep 17 00:00:00 2001 From: nafees nazik Date: Tue, 19 Sep 2023 07:29:44 +0530 Subject: [PATCH] fix: padding --- frontend/src/components/v2/SecretInput/SecretInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/v2/SecretInput/SecretInput.tsx b/frontend/src/components/v2/SecretInput/SecretInput.tsx index c3b64e906..04fba8fe4 100644 --- a/frontend/src/components/v2/SecretInput/SecretInput.tsx +++ b/frontend/src/components/v2/SecretInput/SecretInput.tsx @@ -46,7 +46,7 @@ type Props = Omit, "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( ({ value, isVisible, onChange, onBlur, isDisabled, onFocus, ...props }, ref) => {