Skip to content

Commit

Permalink
fix: login fixes (#1777)
Browse files Browse the repository at this point in the history
login fixes
  • Loading branch information
Tymmmy authored Oct 25, 2024
1 parent 51150ba commit 0e4aeef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions packages/wallet/frontend/src/pages/auth/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ const LoginPage: NextPageWithLayout = () => {
/>
</button>
</Form>
<p className="mt-auto text-center font-extralight text-green dark:text-green-neon">
Not a customer?{' '}
<Link href="signup" className="font-medium underline">
Create an account
</Link>
</p>
</div>
<Image
className="mt-auto object-cover md:hidden"
Expand All @@ -149,12 +155,6 @@ const LoginPage: NextPageWithLayout = () => {
width={500}
height={200}
/>
<p className="mt-auto text-center font-extralight text-green dark:text-green-neon">
Not a customer?{' '}
<Link href="signup" className="font-medium underline">
Create an account
</Link>
</p>
</>
)
}
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/frontend/src/pages/auth/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const SignUpPage: NextPageWithLayout = () => {
return (
<>
<HeaderLogo header="Welcome" />
<h2 className="mb-5 mt-10 text-xl text-green dark:text-teal-neon">
<h2 className="mb-5 mt-2 text-xl text-green dark:text-teal-neon">
Create Account
</h2>
<div className="z-10 w-2/3">
Expand Down

0 comments on commit 0e4aeef

Please sign in to comment.