Skip to content

Commit c821fb3

Browse files
committed
fix alum image sizing
1 parent fe112fc commit c821fb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/people/LabAlum.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const LabAlum: React.FC<Props> = ({ name, role, website, headshot }) => {
2020
<Image
2121
src={headshot}
2222
alt={name}
23-
className="h-12 w-12 rounded object-cover shadow"
23+
className="h-12 w-12 rounded object-cover shadow aspect-square fill"
2424
/>
2525
<div className={cs(website ? "text-primary" : "text-black")}>
2626
<p className="text-sm font-bold">{name}, <span className="text-xs italic">{role.split(" ")[0]}</span></p>

0 commit comments

Comments
 (0)