Add option to view user avatar (#2462)

This commit is contained in:
Ajay Bura
2025-08-24 18:06:45 +05:30
committed by GitHub
parent 066212f176
commit 73bb365ddb
3 changed files with 66 additions and 7 deletions
@@ -39,4 +39,16 @@ export const UserAvatarContainer = style({
});
export const UserHeroAvatar = style({
outline: `${config.borderWidth.B600} solid ${color.Surface.Container}`,
selectors: {
'button&': {
cursor: 'pointer',
},
},
});
export const UserHeroAvatarImg = style({
selectors: {
[`button${UserHeroAvatar}:hover &`]: {
filter: 'brightness(0.5)',
},
},
});