Skip to content

Commit 836868e

Browse files
committed
fix: Home page logos for mobile layout
1 parent 8a5b1ec commit 836868e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/page.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default async function HomePage() {
4242
</Suspense>
4343
</div>
4444
</div>
45-
<div className="flex w-full flex-1 flex-col gap-y-40 pb-32 md:flex-row">
45+
<div className="flex w-full flex-1 flex-col gap-y-5 pb-32 md:flex-row md:gap-y-40">
4646
<div className="flex flex-1">
4747
<div className="mx-auto flex max-w-[500px] flex-1">
4848
<div className="z-10 mx-10 flex flex-col md:flex-1">
@@ -103,7 +103,7 @@ export default async function HomePage() {
103103
{goldExhibitorOne && (
104104
<Link href={`/student/exhibitors?id=${goldExhibitorOne.id}`}>
105105
<Image
106-
className="object-contain"
106+
className="h-10 object-contain md:h-20"
107107
src={goldExhibitorOne.logo_squared ?? ""}
108108
alt={goldExhibitorOne.name}
109109
width={200}
@@ -115,7 +115,7 @@ export default async function HomePage() {
115115
<Link href={`/student/exhibitors?id=${goldExhibitorTwo.id}`}>
116116
<div className="rounded-lg bg-white/90">
117117
<Image
118-
className="object-contain"
118+
className="h-10 object-contain md:h-20"
119119
src={"/exhibitorLogo/NordeaBankLogo.png"}
120120
alt={goldExhibitorTwo.name}
121121
width={200}

0 commit comments

Comments
 (0)