Skip to content

Commit 2d4cc6c

Browse files
committed
feat: design adjustments
Hierarchy is now h-40 (160px) > h-20 (80px) > h-16 (64px)
1 parent 765abe3 commit 2d4cc6c

3 files changed

Lines changed: 21 additions & 33 deletions

File tree

-73 Bytes
Loading
-777 Bytes
Loading

src/routes/landing/Supporters.svelte

Lines changed: 21 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -19,80 +19,68 @@
1919
{
2020
src: dgo,
2121
alt: 'Digitale Gründerinitiative Oberpfalz',
22-
link: 'https://www.digitale-oberpfalz.de/',
23-
width: 'h-20'
22+
link: 'https://www.digitale-oberpfalz.de/'
2423
}
2524
],
2625
starter: [
2726
{
2827
src: msg,
2928
alt: 'MSG Group',
30-
link: 'https://karriere.msg.group/',
31-
width: 'h-8'
29+
link: 'https://karriere.msg.group/'
3230
},
3331
{
3432
src: syskron,
3533
alt: 'syskron',
36-
link: 'https://www.krones.com/en/career/krones.digital.php',
37-
width: 'h-24'
34+
link: 'https://www.krones.com/en/career/krones.digital.php'
3835
},
3936
{
4037
src: tcon,
4138
alt: 'tcon',
42-
link: 'https://careers.team-con.de/',
43-
width: 'h-10'
39+
link: 'https://careers.team-con.de/'
4440
},
4541
{
4642
src: trinnovative,
4743
alt: 'Trinnovative',
48-
link: 'https://www.trinnovative.de/karriere/',
49-
width: 'h-20'
44+
link: 'https://www.trinnovative.de/karriere/'
5045
},
5146
{
5247
src: righleycooper,
5348
alt: 'Righley Cooper',
54-
link: 'hhttps://righleycooper.eu/',
55-
width: 'h-20'
49+
link: 'hhttps://righleycooper.eu/'
5650
},
5751
{
5852
src: logfield,
5953
alt: 'Logfield',
60-
link: 'https://logfield.de/',
61-
width: 'h-20'
54+
link: 'https://logfield.de/'
6255
}
6356
],
6457
medium: [
6558
{
6659
src: vector,
6760
alt: 'Vector',
68-
link: 'https://jobs.vector.com',
69-
width: 'h-22'
61+
link: 'https://jobs.vector.com'
7062
},
7163
{
7264
src: rnext,
7365
alt: 'R-Next',
74-
link: 'https://www.regensburg.de/r-next',
75-
width: 'h-12'
66+
link: 'https://www.regensburg.de/r-next'
7667
}
7768
],
7869
premium: [
7970
{
8071
src: finanzit,
8172
alt: 'FinanzIT',
82-
link: 'https://www.lff-karriere.bayern.de/kampagne/',
83-
width: 'h-20'
73+
link: 'https://www.lff-karriere.bayern.de/kampagne/'
8474
},
8575
{
8676
src: infineon,
8777
alt: 'Infineon',
88-
link: 'https://www.infineon.com/regensburg',
89-
width: 'h-24'
78+
link: 'https://www.infineon.com/regensburg'
9079
},
9180
{
9281
src: stadtwerk,
9382
alt: 'Stadtwerk',
94-
link: 'https://www.das-stadtwerk-regensburg.de/',
95-
width: 'h-20'
83+
link: 'https://www.das-stadtwerk-regensburg.de/'
9684
}
9785
]
9886
};
@@ -109,32 +97,32 @@
10997
</h2>
11098

11199
<!-- Premium sponsors section -->
112-
<div class="flex flex-wrap justify-center pb-2">
100+
<div class="flex flex-wrap md:flex-nowrap justify-center pb-2">
113101
{#each images.premium as image}
114-
<a class="px-4 py-6 mx-4 flex items-center h-40" href={image.link}>
115-
<img src={image.src} class="h-full w-auto object-contain {image.width}" alt={image.alt} />
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}>
103+
<img src={image.src} class="h-full w-auto object-contain" alt={image.alt} />
116104
</a>
117105
{/each}
118106
</div>
119107

120108
<hr class="mx-8 my-4" />
121109

122110
<!-- Medium sponsors section -->
123-
<div class="flex flex-wrap justify-center">
111+
<div class="flex flex-wrap md:flex-nowrap justify-center">
124112
{#each images.medium as image}
125-
<a class="p-2 mx-3 my-2 flex items-center justify-center h-28" href={image.link}>
126-
<img src={image.src} class="h-full w-auto object-contain {image.width}" alt={image.alt} />
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}>
114+
<img src={image.src} class="h-full w-auto object-contain" alt={image.alt} />
127115
</a>
128116
{/each}
129117
</div>
130118

131119
<hr class="mx-8 my-4" />
132120

133121
<!-- Starter sponsors section with specific height adjustment -->
134-
<div class="flex flex-wrap justify-center">
122+
<div class="flex flex-wrap md:flex-nowrap justify-center">
135123
{#each images.starter as image}
136-
<a class="p-2 mx-3 my-1 flex items-center justify-center" href={image.link}>
137-
<img src={image.src} class="w-auto object-contain {image.width}" alt={image.alt} />
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}>
125+
<img src={image.src} class="h-full w-auto object-contain" alt={image.alt} />
138126
</a>
139127
{/each}
140128
</div>

0 commit comments

Comments
 (0)