Skip to content
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
9 changes: 7 additions & 2 deletions platforms/pictique/src/routes/(auth)/auth/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,12 @@
{#if isMobileDevice()}
Login with your <a href={getAppStoreLink()}><b><u>eID Wallet</u></b></a>
{:else}
Scan the QR code using your <b><u class="text-sm">eID App</u></b> to login
Scan the QR code using your <a
href={getAppStoreLink()}
target="_blank"
rel="noopener noreferrer"
aria-label="eID App (opens in new tab)"><b><u class="text-sm">eID App</u></b></a
> to login
{/if}
</h2>
{#if errorMessage}
Expand All @@ -165,7 +170,7 @@
<div class="flex flex-col items-center gap-4">
<a
href={getDeepLinkUrl(qrData)}
class="rounded-xl bg-gradient-to-r from-[#4D44EF] via-[#F35B5B] to-[#F7A428] px-8 py-4 text-base font-semibold text-white transition-opacity hover:opacity-90"
class="rounded-xl bg-linear-to-r from-[#4D44EF] via-[#F35B5B] to-[#F7A428] px-8 py-4 text-base font-semibold text-white transition-opacity hover:opacity-90"
>
Login with eID Wallet
</a>
Expand Down