Skip to content

Commit 147c407

Browse files
committed
format code
1 parent 2d4cc6c commit 147c407

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

src/routes/landing/Supporters.svelte

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,10 @@
9999
<!-- Premium sponsors section -->
100100
<div class="flex flex-wrap md:flex-nowrap justify-center pb-2">
101101
{#each images.premium as image}
102-
<a class="w-full md:w-auto md:flex-1 md:min-w-0 px-4 py-6 mx-4 flex items-center justify-center h-40" href={image.link}>
102+
<a
103+
class="w-full md:w-auto md:flex-1 md:min-w-0 px-4 py-6 mx-4 flex items-center justify-center h-40"
104+
href={image.link}
105+
>
103106
<img src={image.src} class="h-full w-auto object-contain" alt={image.alt} />
104107
</a>
105108
{/each}
@@ -110,7 +113,10 @@
110113
<!-- Medium sponsors section -->
111114
<div class="flex flex-wrap md:flex-nowrap justify-center">
112115
{#each images.medium as image}
113-
<a class="w-full md:w-auto md:flex-1 md:min-w-0 p-2 mx-3 my-2 flex items-center justify-center h-20" href={image.link}>
116+
<a
117+
class="w-full md:w-auto md:flex-1 md:min-w-0 p-2 mx-3 my-2 flex items-center justify-center h-20"
118+
href={image.link}
119+
>
114120
<img src={image.src} class="h-full w-auto object-contain" alt={image.alt} />
115121
</a>
116122
{/each}
@@ -121,7 +127,10 @@
121127
<!-- Starter sponsors section with specific height adjustment -->
122128
<div class="flex flex-wrap md:flex-nowrap justify-center">
123129
{#each images.starter as image}
124-
<a class="w-full md:w-auto md:flex-1 md:min-w-0 p-2 mx-3 my-1 flex items-center justify-center h-16" href={image.link}>
130+
<a
131+
class="w-full md:w-auto md:flex-1 md:min-w-0 p-2 mx-3 my-1 flex items-center justify-center h-16"
132+
href={image.link}
133+
>
125134
<img src={image.src} class="h-full w-auto object-contain" alt={image.alt} />
126135
</a>
127136
{/each}

0 commit comments

Comments
 (0)