Skip to content

Commit 61aa910

Browse files
Merge pull request #134 from OceanParcels/cropping-funer-logos
Cropping funder logos and resizing the SimpleGrid
2 parents ca52695 + 62c765b commit 61aa910

4 files changed

Lines changed: 9 additions & 10 deletions

File tree

public/funders-logos/ERClogo.png

18.9 KB
Loading

public/funders-logos/UUlogo.png

-1.38 KB
Loading

src/components/funders.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,11 @@ export const Funders = () => {
4242
href={funders.url}
4343
key={index}
4444
w={64}
45-
h={64}
4645
align={'center'}
4746
justify={'center'}
4847
rounded={'full'}
4948
>
50-
<Image maxH={36} src={funders.logo} alt={funders.name} />
49+
<Image maxH={20} src={funders.logo} alt={funders.name} />
5150
</Flex>
5251
))}
5352
</SimpleGrid>

src/data/funders.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
export const Funders = [
2-
{
3-
name: 'The European Research Council under the H2020 Starting Grant TOPIOS project (grant agreement No 715386).',
4-
logo: '/funders-logos/ERClogo.png',
5-
url: 'http://topios.org/',
6-
},
72
{
83
name: 'The Dutch Research Council (NWO)',
94
logo: '/funders-logos/NWOlogo.png',
105
url: 'https://www.nwo.nl/en',
116
},
127
{
13-
name: 'Utrecht University',
14-
logo: '/funders-logos/UUlogo.png',
15-
url: 'https://www.uu.nl/en',
8+
name: 'The European Research Council under the H2020 Starting Grant TOPIOS project (grant agreement No 715386).',
9+
logo: '/funders-logos/ERClogo.png',
10+
url: 'http://topios.org/',
1611
},
1712
{
1813
name: 'ESPRC',
1914
logo: '/funders-logos/EPSRlogo.png',
2015
url: 'https://www.ukri.org/councils/epsrc/',
2116
},
17+
{
18+
name: 'Utrecht University',
19+
logo: '/funders-logos/UUlogo.png',
20+
url: 'https://www.uu.nl/en',
21+
},
2222
]

0 commit comments

Comments
 (0)