Skip to content

Commit c1fcf9f

Browse files
committed
small changes to sponsors to make diamond sponsors bigger
1 parent e976116 commit c1fcf9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/pages/sponsors.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default function SponsorsPage() {
5252
{diamondLinks.map((item, index) => {
5353
return (
5454
<div key={index} onClick={() => handleSponsorClick(item)}>
55-
<img className={`h-14 ${logostyle}`} src={item.svg} alt={item.alt} />
55+
<img className={`h-16 max-w-xs ${logostyle}`} src={item.svg} alt={item.alt} />
5656
</div>
5757
);
5858
})}
@@ -65,7 +65,7 @@ export default function SponsorsPage() {
6565
{goldLinks.map((item, index) => {
6666
return (
6767
<div key={index} onClick={() => handleSponsorClick(item)}>
68-
<img className={`h-14 ${logostyle}`} src={item.svg} alt={item.alt} />
68+
<img className={`h-14 max-w-xs ${logostyle}`} src={item.svg} alt={item.alt} />
6969
</div>
7070
);
7171
})}
@@ -77,7 +77,7 @@ export default function SponsorsPage() {
7777
{silverLinks.map((item, index) => {
7878
return (
7979
<div key={index} onClick={() => handleSponsorClick(item)}>
80-
<img className={`h-14 ${logostyle}`} src={item.svg} alt={item.alt} />
80+
<img className={`h-14 max-w-xs ${logostyle}`} src={item.svg} alt={item.alt} />
8181
</div>
8282
);
8383
})}

0 commit comments

Comments
 (0)