Skip to content

Commit

Permalink
Merge pull request #43 from ForkbombEu/fix_verify_ui
Browse files Browse the repository at this point in the history
fix: verify page ui
  • Loading branch information
andrea-dintino authored Apr 29, 2024
2 parents fdb387f + 4398a34 commit 767c191
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions src/routes/[[lang]]/(protected)/[id]/verify/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,14 @@
{#if Capacitor.getPlatform() == 'web'}
{#await registerQr('fcm registration token is not available in web') then qr}
<div
class="flex flex-row items-center justify-center gap-1 rounded-[0px_8px_8px_0px] bg-primary px-2 py-4"
class="flex flex-row items-center justify-center gap-1 rounded-lg bg-primary px-2 py-4"
>
<img src={qr} alt="qrCode" class="w-full" />
<div class="flex flex-col items-center justify-center gap-1 px-2 py-4 text-center">
<div class="flex-grow">
<img src={qr} alt="qrCode" class="w-full" />
</div>
<div
class="flex flex-shrink flex-col items-center justify-center gap-1 px-2 py-4 text-center"
>
<d-text size="l" class="w-max">Session ID:</d-text>
<d-heading size="s">{id}</d-heading>
<d-text size="m"
Expand Down Expand Up @@ -128,8 +132,12 @@
<div
class="flex flex-row items-center justify-center gap-1 rounded-[0px_8px_8px_0px] bg-primary px-2 py-4"
>
<img src={qr} alt="qrCode" class="w-full" />
<div class="flex flex-col items-center justify-center gap-1 px-2 py-4 text-center">
<div class="flex-grow">
<img src={qr} alt="qrCode" class="w-full" />
</div>
<div
class="flex flex-shrink flex-col items-center justify-center gap-1 px-2 py-4 text-center"
>
<d-text size="l" class="w-max">Session ID:</d-text>
<d-heading size="s">{id}</d-heading>
<d-text size="m"
Expand Down

0 comments on commit 767c191

Please sign in to comment.