@@ -3,6 +3,7 @@ import { MouseEvent, useState } from 'react';
3
3
import { Avatar , AvatarGroup , Popover , Typography } from '../../base' ;
4
4
import { iconSmall } from '../../constants/iconsSizes' ;
5
5
import { styled , useTheme } from '../../theme' ;
6
+ import { DARK_TEAL_BLUE } from '../../theme/colors/colors' ;
6
7
import { CustomTooltip } from '../CustomTooltip' ;
7
8
8
9
/**
@@ -70,16 +71,16 @@ const StyledAvatar = styled(Avatar)<StyledAvatarProps>(({ theme, borderColor })
70
71
width : theme . spacing ( 4 ) ,
71
72
height : theme . spacing ( 4 ) ,
72
73
cursor : 'pointer' ,
73
- border : `2px solid ${ borderColor || theme . palette . common . white } !important`
74
+ border : `1.5px solid ${ borderColor || theme . palette . common . white } !important`
74
75
} ;
75
76
} ) ;
76
77
77
78
const 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 } ` ,
81
82
borderRadius : '50%' ,
82
- background : 'rgba(57, 102, 121, .9)' ,
83
+ background : DARK_TEAL_BLUE ,
83
84
display : 'flex' ,
84
85
justifyContent : 'center' ,
85
86
alignItems : 'center' ,
@@ -101,8 +102,7 @@ const PopupAvatarWrapper = styled('div')({
101
102
} ) ;
102
103
103
104
const UserName = styled ( Typography ) ( {
104
- marginLeft : '10px' ,
105
- fontWeight : 600
105
+ marginLeft : '10px'
106
106
} ) ;
107
107
108
108
const StyledPopover = styled ( Popover ) ( ( ) => ( {
0 commit comments