Skip to content

Commit

Permalink
style: revert wide cards
Browse files Browse the repository at this point in the history
  • Loading branch information
deansallinen committed Dec 19, 2024
1 parent d705d0b commit e9db6cd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/routes/[network]/(account)/fund/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import coinbaseLogo from '$lib/assets/exchanges/coinbase.svg';
import Stack from '$lib/components/layout/stack.svelte';
import MultiCard from '$lib/components/layout/page/multicard.svelte';
import Cluster from '$lib/components/layout/cluster.svelte';
const ON_RAMP_PROVIDERS = [
{
Expand Down Expand Up @@ -157,9 +158,9 @@
<Stack>
<h2 class="h4">{m.token_purchase_providers()}</h2>

<MultiCard tag="ul">
<Cluster tag="ul">
{#each ON_RAMP_PROVIDERS as service}
<Card tag="li" class="p-6">
<Card tag="li" class="max-w-sm p-6">
<div>
<div class="mb-4 flex items-center justify-center">
<img src={service.logo} alt={service.id} class="h-24 w-3/5 object-contain" />
Expand Down Expand Up @@ -194,7 +195,7 @@
</div>
</Card>
{/each}
</MultiCard>
</Cluster>
</Stack>

<Stack class="gap-4">
Expand Down

0 comments on commit e9db6cd

Please sign in to comment.