Skip to content

Commit 9a0ee7e

Browse files
Fix conflicts
2 parents f5f5030 + fddf30d commit 9a0ee7e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

client/src/containers/home/collaborator.tsx

+1-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ const Collaborators = () => {
1919
<div className="flex flex-wrap content-center items-center justify-between gap-6">
2020
{COLLABORATORS.map(({ name, image }) => (
2121
<div key={name} className="flex-1 p-5">
22-
<Image
23-
src={image}
24-
alt={name}
25-
className="mx-auto h-full max-h-20 w-full max-w-40 object-contain"
26-
/>
22+
<Image src={image} alt={name} className="mx-auto h-20 w-full max-w-44 object-contain" />
2723
</div>
2824
))}
2925
</div>

0 commit comments

Comments
 (0)