Skip to content

Commit

Permalink
style: profile bg
Browse files Browse the repository at this point in the history
  • Loading branch information
Agilulfo1820 committed Feb 8, 2025
1 parent 8425000 commit eecb57a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ export const Profile = ({ onEditClick }: ProfileProps) => {
const { darkMode: isDark } = useVeChainKitConfig();
const { account } = useWallet();

const baseBackgroundColor = isDark ? 'whiteAlpha.100' : '#00000005';

const headerImageSvg = picasso(account?.address ?? '');

return (
<Card
bg={isDark ? 'blackAlpha.400' : 'whiteAlpha.400'}
bg={baseBackgroundColor}
borderRadius="xl"
width="full"
position="relative"
Expand Down

0 comments on commit eecb57a

Please sign in to comment.