Skip to content

Commit 58c32b9

Browse files
committed
chore: google svg
1 parent 85a846b commit 58c32b9

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed
Lines changed: 9 additions & 1 deletion
Loading

apps/frontend/src/routes/(auth)/login/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@
111111
<Separator class="my-6" />
112112
<div class="space-y-2">
113113
<Button href="/login/github" variant="secondary" class="w-full">
114-
<img class="mr-2 h-5 w-5" src={Github} alt="github" />
114+
<img class="mr-2 h-4 w-4" src={Github} alt="github" />
115115
Login with Github
116116
</Button>
117117
<Button href="/login/google" variant="secondary" class="w-full">
118-
<img class="mr-2 h-5 w-5" src={Google} alt="google" />
118+
<img class="mr-2 h-4 w-4" src={Google} alt="google" />
119119
Login with Google
120120
</Button>
121121
</div>

apps/frontend/src/routes/(auth)/signup/+page.svelte

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import { Label } from "$lib/components/ui/label/index.js"
88
import Logo from "$lib/images/logo.svg"
99
import Github from "$lib/images/github.svg"
10+
import Google from "$lib/images/Google.svg"
1011
import { createMutation } from "@tanstack/svelte-query"
1112
import { z } from "@undb/zod"
1213
import { defaults, superForm } from "sveltekit-superforms"
@@ -163,9 +164,13 @@
163164
<Separator class="my-6" />
164165
<div class="space-y-2">
165166
<Button href="/login/github" variant="secondary" class="w-full">
166-
<img class="mr-2 h-5 w-5" src={Github} alt="github" />
167+
<img class="mr-2 h-4 w-4" src={Github} alt="github" />
167168
Login with Github
168169
</Button>
170+
<Button href="/login/google" variant="secondary" class="w-full">
171+
<img class="mr-2 h-4 w-4" src={Google} alt="google" />
172+
Login with Google
173+
</Button>
169174
</div>
170175
</Card.Content>
171176
</Card.Root>

0 commit comments

Comments
 (0)