Skip to content

Commit afe848b

Browse files
committed
auth page button style updated
1 parent 0c9e42f commit afe848b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/auth/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ const AuthPage: React.FC = () => {
1919
<div className="flex flex-col gap-4">
2020
<button
2121
onClick={() => initiateAuth("google")}
22-
className="border-dashed w-full px-3 py-2 text-sm cursor-pointer flex gap-2 items-center transition-colors bg-zinc-800 hover:bg-zinc-700 focus:bg-zinc-950 text-zinc-200"
22+
className="w-full px-3 py-2 text-sm cursor-pointer flex gap-2 items-center transition-colors bg-zinc-800 hover:bg-zinc-700 focus:bg-zinc-950 text-zinc-200"
2323
>
2424
<GoogleFill size={16} />
2525
Continue with Google
2626
</button>
2727
<button
2828
onClick={() => initiateAuth("apple")}
29-
className="border-dashed w-full px-3 py-2 text-sm cursor-pointer flex gap-2 items-center transition-colors bg-zinc-800 hover:bg-zinc-700 focus:bg-zinc-950 text-zinc-200"
29+
className="w-full px-3 py-2 text-sm cursor-pointer flex gap-2 items-center transition-colors bg-zinc-800 hover:bg-zinc-700 focus:bg-zinc-950 text-zinc-200"
3030
>
3131
<svg
3232
xmlns="http://www.w3.org/2000/svg"
@@ -41,7 +41,7 @@ const AuthPage: React.FC = () => {
4141
</button>
4242
<button
4343
onClick={() => initiateAuth("twitter")}
44-
className="border-dashed w-full px-3 py-2 text-sm cursor-pointer flex gap-2 items-center transition-colors bg-zinc-800 hover:bg-zinc-700 focus:bg-zinc-950 text-zinc-200"
44+
className="w-full px-3 py-2 text-sm cursor-pointer flex gap-2 items-center transition-colors bg-zinc-800 hover:bg-zinc-700 focus:bg-zinc-950 text-zinc-200"
4545
>
4646
<XFill size={16} />
4747
Continue with Twitter

0 commit comments

Comments
 (0)