Skip to content

Commit

Permalink
Fix background color for avatar image (#654)
Browse files Browse the repository at this point in the history
* Fix background color for avatar image

* Fix background color for avatar image

* Fix background color for light theme

* Trigger Buildpre-build

* Fix background color for light theme

---------

Co-authored-by: Arkadii Yakovets <[email protected]>
  • Loading branch information
aramattamara and arkid15r authored Jan 29, 2025
1 parent 27327e3 commit cbe2546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/UserDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const UserDetailsPage: React.FC = () => {
<div className="flex flex-col items-center space-y-4 sm:flex-row sm:items-center sm:space-x-6 sm:space-y-0">
<div className="-mt-24 flex-shrink-0">
<img
className="h-40 w-40 rounded-full border-4 border-white object-cover shadow-lg dark:border-gray-800"
className="h-40 w-40 rounded-full border-4 border-white bg-white object-cover shadow-lg transition-colors dark:border-gray-800 dark:bg-gray-600/60"
src={user.avatar_url}
alt={user.name}
/>
Expand Down

0 comments on commit cbe2546

Please sign in to comment.