Skip to content

Commit 3e33317

Browse files
committed
format code
1 parent 64b292a commit 3e33317

2 files changed

Lines changed: 5 additions & 14 deletions

File tree

src/routes/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<Hardware />
3030
<Team />
3131
-->
32-
<Supporters />
32+
<Supporters />
3333
<Behind />
3434
<About />
3535
<Venue />

src/routes/landing/Supporters.svelte

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
import logfield from '$lib/images/supporters/logfield.png';
1616
import stadtwerk from '$lib/images/supporters/stadtwerk.png';
1717
18-
1918
let images = {
2019
partners: [
2120
{
@@ -61,7 +60,7 @@
6160
alt: 'Logfield',
6261
link: 'https://logfield.de/',
6362
width: 'h-20'
64-
},
63+
}
6564
],
6665
medium: [
6766
{
@@ -82,7 +81,7 @@
8281
src: finanzit,
8382
alt: 'FinanzIT',
8483
link: 'https://www.continental.com/en/career/',
85-
width: 'h-30'
84+
width: 'h-30'
8685
},
8786
{
8887
src: infineon,
@@ -125,11 +124,7 @@
125124
<div class="flex flex-wrap justify-center">
126125
{#each images.medium as image}
127126
<a class="p-2 mx-3 my-2 flex items-center justify-center h-28" href={image.link}>
128-
<img
129-
src={image.src}
130-
class="h-full w-auto object-contain {image.width}"
131-
alt={image.alt}
132-
/>
127+
<img src={image.src} class="h-full w-auto object-contain {image.width}" alt={image.alt} />
133128
</a>
134129
{/each}
135130
</div>
@@ -140,11 +135,7 @@
140135
<div class="flex flex-wrap justify-center">
141136
{#each images.starter as image}
142137
<a class="p-2 mx-3 my-1 flex items-center justify-center" href={image.link}>
143-
<img
144-
src={image.src}
145-
class="w-auto object-contain {image.width}"
146-
alt={image.alt}
147-
/>
138+
<img src={image.src} class="w-auto object-contain {image.width}" alt={image.alt} />
148139
</a>
149140
{/each}
150141
</div>

0 commit comments

Comments
 (0)