mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-07-10 04:00:17 +00:00
fix: truncate forgot password text if it's too big
This commit is contained in:
@@ -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")}
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user