Skip to content

Commit

Permalink
Added shadows in contributor's profile pic
Browse files Browse the repository at this point in the history
  • Loading branch information
codeAbinash committed Jul 7, 2023
1 parent 3347485 commit 7082d77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/author/Contributors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ export default function Contributors() {
function showUserModal({ user }: { user: any }) {
setModalUi(<div className="p-4 pt-0 gap-3 flex flex-col justify-center items-center text-center">
<div className="pic flex-none">
<img src={user.pic || icons.spinner} className="w-32 aspect-square rounded-full object-cover" />
<img src={user.pic || icons.spinner} className="w-32 aspect-square rounded-full object-cover shadow-lg shadow-black/30" />
</div>
<div className="content">
<div className="content mt-5">
<div className="name font-medium text-lg">
<p>{user.name}</p>
</div>
Expand Down

0 comments on commit 7082d77

Please sign in to comment.