Fix avatar scaling issue in wide card and profile activity page (#6503) (#6778)

- Adjusted CSS to correct the compression of the profile avatar in the wide card and profile activity page.
- Ensured the avatar scales properly, aligning with the expected behavior seen in the standard profile picture view.
- Tested on Chrome (Brave browser) to confirm the fix.
pull/6824/head
Afzal Imdad 3 months ago committed by GitHub
parent 760046a4e3
commit 62b3a2eed5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/components/UserPublicProfile/UserPublicProfileHeader.tsx

@ -27,7 +27,7 @@ export function UserPublicProfileHeader(props: UserPublicProfileHeaderProps) {
: '/images/default-avatar.png' : '/images/default-avatar.png'
} }
alt={name} alt={name}
className="h-32 w-32 rounded-full" className="h-32 w-32 object-cover rounded-full"
/> />
<div> <div>

Loading…
Cancel
Save