From 0812bc3869c536fe160e1a76bebfda2e85e65038 Mon Sep 17 00:00:00 2001 From: Stavros Date: Thu, 9 Jul 2026 16:18:28 +0300 Subject: [PATCH] fix: truncate forgot password text if it's too big --- frontend/src/components/auth/login-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/auth/login-form.tsx b/frontend/src/components/auth/login-form.tsx index a0901a17..d76dcb6a 100644 --- a/frontend/src/components/auth/login-form.tsx +++ b/frontend/src/components/auth/login-form.tsx @@ -78,7 +78,7 @@ export const LoginForm = (props: Props) => { `/forgot-password${props.params ? `${props.params}` : ""}`, ); }} - className="text-muted-foreground hover:text-muted-foreground/80 text-sm absolute right-0 bottom-[2.565rem]" // 2.565 is *just* perfect + className="text-muted-foreground hover:text-muted-foreground/80 text-sm absolute right-0 bottom-[2.565rem] max-w-40 truncate" // 2.565 is *just* perfect > {t("forgotPasswordTitle")}