Skip to content
Snippets Groups Projects
Commit e0d3e6b1 authored by Joseph Zeng's avatar Joseph Zeng
Browse files

fix avatar offest

parent 144e20b9
No related branches found
No related tags found
No related merge requests found
Pipeline #147245 passed
......@@ -4,7 +4,7 @@ export const Member = ({ name, description, avatarUrl, right }) => {
<div className={"flex items-end" + (right ? " flex-row-reverse" : "")}>
<div className="avatar p-2">
<div className="w-24 aspect-square rounded-full">
<img src={avatarUrl} alt="name" />
<img src={avatarUrl} alt="name" className="m-0 p-0" />
</div>
</div>
<div className="flex flex-col">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment