Skip to content

Commit

Permalink
fix: profile picture styling (#28)
Browse files Browse the repository at this point in the history
* Resize UP image

* Allign UPs with other address entities
  • Loading branch information
Wolmin authored Nov 26, 2024
1 parent 574a668 commit 5fe1e9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ui/shared/Page/PageTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const PageTitle = ({ title, contentAfter, withTextAd, backLink, className, isLoa
{ withTextAd && <TextAd order={{ base: -1, lg: 100 }} mb={{ base: 6, lg: 0 }} ml="auto" w={{ base: '100%', lg: 'auto' }}/> }
</Flex>
{ secondRow && (
<Flex alignItems="center" minH={ 10 } overflow="hidden" _empty={{ display: 'none' }}>
<Flex alignItems="center" minH={ 10 } _empty={{ display: 'none' }}>
{ secondRow }
</Flex>
) }
Expand Down
4 changes: 2 additions & 2 deletions ui/shared/entities/address/IdenticonUniversalProfileQuery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ export const IdenticonUniversalProfile: React.FC<Props> = ({
}

return (
<Skeleton isLoaded={ !isLoading }>
<Skeleton pr={ profileImageUrl ? 1.5 : 0 } isLoaded={ !isLoading }>
{ profileImageUrl ? (
<Box mx={ 2 }>
<Box style={{ transform: 'scale(0.8)', zIndex: 1000 }} zIndex={ 1000 } ml={ -0.5 }>
<lukso-profile
size="x-small"
profile-url={ profileImageUrl }
Expand Down

0 comments on commit 5fe1e9e

Please sign in to comment.