From 7e3624a0fa1917e49f15da98ccab88c2d5f2e268 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Wed, 24 Sep 2025 11:58:58 -0300 Subject: [PATCH] Added padding when password button is present --- frontend/components/ui/input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/components/ui/input.tsx b/frontend/components/ui/input.tsx index 2a5f9f89..d9034421 100644 --- a/frontend/components/ui/input.tsx +++ b/frontend/components/ui/input.tsx @@ -45,6 +45,7 @@ const Input = React.forwardRef( className={cn( "primary-input !placeholder-transparent", icon && "pl-9", + type === "password" && "!pr-8", icon ? inputClassName : className, )} ref={ref}