Skip to content

Commit 50f116a

Browse files
committed
logo sizes and lint fixes
1 parent 796acd0 commit 50f116a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

frontend/src/components/ResourcesAndContacts/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const ResourcesAndContacts = () => {
2929
target="_blank"
3030
className={`col-span-4 p-5 ${boxStyling} flex`}
3131
>
32-
<div className="flex justify-center align-middle items-center pl-2 pr-8">
32+
<div className="flex justify-center align-middle items-center pl-2 pr-10">
3333
<Image src={item.svg} alt={item.alt} draggable="false" width={item.width} height={item.height}/>
3434
</div>
3535
<div>
@@ -65,7 +65,7 @@ const ResourcesAndContacts = () => {
6565
target="_blank"
6666
className={`md:col-span-2 col-span-4 p-5 ${boxStyling} flex`}
6767
>
68-
<div className='flex align-middle items-center pt-2 pb-4 pr-8'>
68+
<div className='flex align-middle items-center pt-2 pb-4 pr-10'>
6969
<Image src={item.svg} alt={item.alt} draggable="false" width={item.width} height={item.height} className='rounded-md'/>
7070
</div>
7171
<div>

public/data/resourceCards.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export const stage2: resourceCards[] = [
2727
alt: 'Structs',
2828
title: 'Structs',
2929
desc: 'An educational data structures and algorithms platform',
30-
width: 60,
31-
height: 60
30+
width: 70,
31+
height: 70
3232
},
3333
{
3434
href: 'https://jobsboard.csesoc.unsw.edu.au/',
@@ -45,17 +45,17 @@ export const stage2: resourceCards[] = [
4545
alt: 'Notangles',
4646
title: 'Notangles',
4747
desc: 'Trimester timetabling tool - no more timetable tangles!',
48-
width: 60,
49-
height: 60
48+
width: 70,
49+
height: 70
5050
},
5151
{
5252
href: 'https://unilectives.csesoc.app/',
5353
svg: '/assets/unilectives_logo.svg',
5454
alt: 'Uni-lectives',
5555
title: 'Uni-lectives',
5656
desc: 'Read course electives to help you pick your electives or even write your own!',
57-
width: 60,
58-
height: 60
57+
width: 80,
58+
height: 80
5959
}
6060
];
6161

@@ -96,4 +96,4 @@ export const stage3: resourceCards[] = [
9696
width: 60,
9797
height: 60
9898
}
99-
];
99+
];

0 commit comments

Comments
 (0)