We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f5f5030 + fddf30d commit 9a0ee7eCopy full SHA for 9a0ee7e
client/src/containers/home/collaborator.tsx
@@ -19,11 +19,7 @@ const Collaborators = () => {
19
<div className="flex flex-wrap content-center items-center justify-between gap-6">
20
{COLLABORATORS.map(({ name, image }) => (
21
<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
- />
+ <Image src={image} alt={name} className="mx-auto h-20 w-full max-w-44 object-contain" />
27
</div>
28
))}
29
0 commit comments