From d010a2f515ad145cbf8a0232584db63bef5eec11 Mon Sep 17 00:00:00 2001 From: Igor Carvalho Date: Thu, 6 Jul 2023 20:05:20 -0300 Subject: [PATCH] style: Fix characters passing through password icon --- src/frontend/src/components/inputComponent/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/components/inputComponent/index.tsx b/src/frontend/src/components/inputComponent/index.tsx index 61942f834..f1159cdd5 100644 --- a/src/frontend/src/components/inputComponent/index.tsx +++ b/src/frontend/src/components/inputComponent/index.tsx @@ -45,7 +45,7 @@ export default function InputComponent({ if (disableCopyPaste) setDisableCopyPaste(false); }} className={classNames( - " pr-12 ", + " pr-9 ", disabled ? " input-disable " : "", password && !pwdVisible && myValue !== "" ? "password" : "", editNode ? " input-edit-node " : " input-primary ",