Skip to content

Commit

Permalink
feat(ui/web/sponsorship): improve alignment on large screen
Browse files Browse the repository at this point in the history
  • Loading branch information
HasithDeAlwis authored and MFarabi619 committed Jan 6, 2025
1 parent 04c4488 commit c447d51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function SponsorPresenter({ isPresent, sponsors }: SponsorDisplayProps) {
<TerminalText>
{isPresent ? <h2> Present </h2> : <h2> Past </h2>}
</TerminalText>
<main className="flex flex-row flex-wrap gap-y-3 justify-center lg:items-start">
<main className="flex flex-row flex-wrap gap-3 justify-center md:justify-start lg:items-start">
{sponsors.map(sponsor => (
<div key={sponsor.name} className="lg:pl-9">
<SponsorItem sponsor={sponsor} isPresent={isPresent} />
Expand Down

0 comments on commit c447d51

Please sign in to comment.