Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎨 make the whole product tab info clickable (#238) #239

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
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: 6 additions & 3 deletions registration/src/lib/components/products/TdriveProduct.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
};
</script>

<div class="flex flex-row space-x-5 bg-gray-100 p-5 rounded-3xl w-full">
<button
on:click={open}
type="button"
class="flex flex-row space-x-5 bg-gray-100 p-5 rounded-3xl w-full cursor-pointer"
>
<div class="shrink items-center justify-center">
<img src="/images/tdrive.svg" alt="tdrive" class="h-14 w-14" />
</div>
Expand All @@ -28,9 +32,8 @@
<button
aria-label="open tdrive"
type="button"
on:click={open}
class="flex shrink items-center justify-center"
>
<img src="/images/arrow-forward.svg" alt="next" class="w-6" />
</button>
</div>
</button>
5 changes: 2 additions & 3 deletions registration/src/lib/components/products/TmailProduct.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
};
</script>

<div class="flex flex-row space-x-5 bg-gray-100 p-5 rounded-3xl w-full">
<button on:click={open} type="button" class="flex flex-row space-x-5 bg-gray-100 p-5 rounded-3xl w-full cursor-pointer">
<div class="shrink items-center justify-center">
<img src="/images/tmail.svg" alt="tmail" class="h-14 w-14" />
</div>
Expand All @@ -28,9 +28,8 @@
<button
aria-label="open tmail"
type="button"
on:click={open}
class="flex shrink items-center justify-center"
>
<img src="/images/arrow-forward.svg" alt="next" class="w-6" />
</button>
</div>
</button>
11 changes: 7 additions & 4 deletions registration/src/lib/components/products/TwakeProduct.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@
};
</script>

<div class="flex flex-row space-x-5 bg-gray-100 p-5 pt-4 rounded-3xl w-full">
<button
on:click={open}
type="button"
class="flex flex-row space-x-5 bg-gray-100 p-5 pt-4 rounded-3xl w-full cursor-pointer"
>
<div class="items-center justify-center">
<img src="/images/twakechat.svg" alt="twake" class="h-14 w-14" />
<img src="/images/twakechat.svg" alt="twake" class="h-14 w-14" />
</div>
<div class="flex flex-col gap-2 w-full items-start justify-start">
<h1 class="hidden lg:block text-[22px] not-italic font-semibold leading-7 text-left text-black">
Expand All @@ -28,9 +32,8 @@
<button
type="button"
aria-label={$t('open-twake')}
on:click={open}
class="flex shrink items-center justify-center"
>
<img src="/images/arrow-forward.svg" alt="next" class="w-6" />
</button>
</div>
</button>
Loading