Skip to content

Commit

Permalink
refactor: change color on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
rharkor committed Sep 16, 2023
1 parent 1db5a2a commit e3a50cb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/[lang]/(sys-auth)/forgot-password/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default async function ForgotPassword({
<h1 className="text-2xl font-semibold tracking-tight">{dictionary.forgotPasswordTitle}</h1>
<p className="text-sm text-muted-foreground">{dictionary.forgotPasswordDescription}</p>
<ForgotPasswordForm dictionary={dictionary} />
<Link href={authRoutes.signIn[0]} className="text-sm text-muted-foreground hover:text-white">
<Link href={authRoutes.signIn[0]} className="text-sm text-muted-foreground hover:text-primary">
{dictionary.goToSignInPage}
</Link>
</main>
Expand Down
2 changes: 1 addition & 1 deletion src/app/[lang]/(sys-auth)/reset-password/[token]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default async function ForgotPassword({
<h1 className="text-2xl font-semibold tracking-tight">{dictionary.resetPasswordTitle}</h1>
<p className="text-sm text-muted-foreground">{dictionary.resetPasswordDescription}</p>
<ResetPasswordForm dictionary={dictionary} token={token} />
<Link href={authRoutes.signIn[0]} className="text-sm text-muted-foreground hover:text-white">
<Link href={authRoutes.signIn[0]} className="text-sm text-muted-foreground hover:text-primary">
{dictionary.goToSignInPage}
</Link>
</main>
Expand Down
2 changes: 1 addition & 1 deletion src/app/[lang]/(sys-auth)/verify-email/[token]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default async function VerifyEmail({
<h1 className="text-2xl font-semibold tracking-tight">{dictionary.emailVerificationTitle}</h1>
<p className="text-sm text-muted-foreground">{dictionary.emailVerificationDescription}</p>
<VerifyEmailButton dictionary={dictionary} token={token} />
<Link href={authRoutes.signIn[0]} className="text-sm text-muted-foreground hover:text-white">
<Link href={authRoutes.signIn[0]} className="text-sm text-muted-foreground hover:text-primary">
{dictionary.goToSignInPage}
</Link>
</main>
Expand Down
2 changes: 1 addition & 1 deletion src/components/auth/login-user-auth-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export function LoginUserAuthForm({ dictionary, searchParams, ...props }: UserAu
name="password"
/>
</div>
<Link className="ml-auto text-sm text-muted-foreground hover:text-white" href={"/forgot-password"}>
<Link className="ml-auto text-sm text-muted-foreground hover:text-primary" href={"/forgot-password"}>
{dictionary.forgotPassword}
</Link>
<Button type="submit" isLoading={isLoading}>
Expand Down

0 comments on commit e3a50cb

Please sign in to comment.