Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: issue with top margin in sign in page #124

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pages/auth/signin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ const Home: NextPage<{ authProviders: string; feedbackEmail: string }> = ({
<meta name="description" content="SplitPro: Split Expenses with your friends for free" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className="flex h-full flex-col justify-center">
<div className="flex -translate-y-1/2 flex-col items-center">
<main className="flex h-full flex-col justify-center lg:justify-normal">
<div className="flex flex-col items-center lg:mt-20 ">
<div className="mb-10 flex items-center gap-4">
<p className="text-3xl text-primary">SplitPro</p>
</div>
Expand Down