Skip to content

Commit

Permalink
Update login.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab authored Jan 7, 2025
1 parent eaf1b5a commit 48e46ba
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions apps/web/src/components/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ export default async function Login() {
<h2 className="text-2xl font-normal">{t("login.title")}</h2>
<p className="text-secondary">{t("login.description")}</p>
<div className="flex flex-col sm:flex-row gap-4 w-full mt-4">
<GithubSignIn />
<GoogleSignIn />
<div className="w-full sm:w-auto">
<GithubSignIn className="w-full" />
</div>
<div className="w-full sm:w-auto">
<GoogleSignIn className="w-full" />
</div>
</div>

<div className="absolute bottom-12 max-w-xl px-4">
Expand Down

0 comments on commit 48e46ba

Please sign in to comment.