We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a1b8ce commit 8e9902bCopy full SHA for 8e9902b
src/components/Sponsor/Sponsor.styles.ts
@@ -6,6 +6,7 @@ export const Wrapper = styled.a`
6
flex-flow: column;
7
align-items: center;
8
width: fit-content;
9
+ background: ${({ theme }) => theme.colors.white};
10
11
text-decoration: none;
12
gap: 1rem;
src/components/Sponsor/Sponsor.tsx
@@ -17,8 +17,8 @@ const Sponsor = ({ data }: { data: ISponsor }) => {
17
src={`https:${typeof logo === "object" ? logo?.fields?.file?.url : logo}`}
18
alt={name}
19
title={name}
20
- width={300}
21
- height={300 * proportion}
+ width={600}
+ height={600 * proportion}
22
/>
23
</Wrapper>
24
);
0 commit comments