Skip to content

Commit

Permalink
Fix classname typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Feb 5, 2025
1 parent d932bbd commit 237c145
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/staff/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function Page() {
alt=""
height={438}
width={582}
className="rounded-xl object-fit max-h-96 w-auto"
className="rounded-xl object-contain max-h-96 w-auto"
/>
))}
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Speakers/Session/Session.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Session = ({
alt={t(`speakers:data.rooms.${session.room}`)}
width={18}
height={20}
className="object-fit mr-1"
className="object-contain mr-1"
/>
<span>{t(`speakers:data.rooms.${session.room}`)}</span>
</>
Expand Down
4 changes: 2 additions & 2 deletions src/components/SponsorList/SponsorListByType.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const SponsorListByType = ({ items }: { items: SponsorProps[] }) => {
alt={sponsor.name}
width={606}
height={280}
className="rounded-3xl object-fit md:col-span-2"
className="rounded-3xl object-contain md:col-span-2"
/>
<div className="flex flex-col gap-6 md:col-span-3">
<div className="h-8">
Expand All @@ -84,7 +84,7 @@ const SponsorListByType = ({ items }: { items: SponsorProps[] }) => {
alt={sponsor.name}
width={150}
height={30}
className="object-fit h-full w-auto max-w-48"
className="object-contain h-full w-auto max-w-48"
/>
</div>
<Typography color="dark">
Expand Down

0 comments on commit 237c145

Please sign in to comment.