Skip to content

Commit 8e9902b

Browse files
committed
Chore: Update sponsors rendering size
1 parent 4a1b8ce commit 8e9902b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/Sponsor/Sponsor.styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export const Wrapper = styled.a`
66
flex-flow: column;
77
align-items: center;
88
width: fit-content;
9+
background: ${({ theme }) => theme.colors.white};
910
1011
text-decoration: none;
1112
gap: 1rem;

src/components/Sponsor/Sponsor.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const Sponsor = ({ data }: { data: ISponsor }) => {
1717
src={`https:${typeof logo === "object" ? logo?.fields?.file?.url : logo}`}
1818
alt={name}
1919
title={name}
20-
width={300}
21-
height={300 * proportion}
20+
width={600}
21+
height={600 * proportion}
2222
/>
2323
</Wrapper>
2424
);

0 commit comments

Comments
 (0)