@@ -3,6 +3,7 @@ import { MouseEvent, useState } from 'react';
33import { Avatar , AvatarGroup , Popover , Typography } from '../../base' ;
44import { iconSmall } from '../../constants/iconsSizes' ;
55import { styled , useTheme } from '../../theme' ;
6+ import { DARK_TEAL_BLUE } from '../../theme/colors/colors' ;
67import { CustomTooltip } from '../CustomTooltip' ;
78
89/**
@@ -70,16 +71,16 @@ const StyledAvatar = styled(Avatar)<StyledAvatarProps>(({ theme, borderColor })
7071 width : theme . spacing ( 4 ) ,
7172 height : theme . spacing ( 4 ) ,
7273 cursor : 'pointer' ,
73- border : `2px solid ${ borderColor || theme . palette . common . white } !important`
74+ border : `1.5px solid ${ borderColor || theme . palette . common . white } !important`
7475 } ;
7576} ) ;
7677
7778const MoreAvatarButton = styled ( 'div' ) ( ( { theme } ) => ( {
78- width : theme . spacing ( 4.25 ) ,
79- height : theme . spacing ( 4.25 ) ,
80- border : `1px solid ${ theme . palette . common . white } ` ,
79+ width : theme . spacing ( 4.5 ) ,
80+ height : theme . spacing ( 4.5 ) ,
81+ border : `1.5px solid ${ theme . palette . common . white } ` ,
8182 borderRadius : '50%' ,
82- background : 'rgba(57, 102, 121, .9)' ,
83+ background : DARK_TEAL_BLUE ,
8384 display : 'flex' ,
8485 justifyContent : 'center' ,
8586 alignItems : 'center' ,
@@ -101,8 +102,7 @@ const PopupAvatarWrapper = styled('div')({
101102} ) ;
102103
103104const UserName = styled ( Typography ) ( {
104- marginLeft : '10px' ,
105- fontWeight : 600
105+ marginLeft : '10px'
106106} ) ;
107107
108108const StyledPopover = styled ( Popover ) ( ( ) => ( {
0 commit comments