Skip to content

Commit c3c6a4a

Browse files
committed
fix: some styling
Signed-off-by: amitamrutiya <[email protected]>
1 parent 6dde247 commit c3c6a4a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/custom/CollaboratorAvatarGroup/CollaboratorAvatarGroup.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { MouseEvent, useState } from 'react';
33
import { Avatar, AvatarGroup, Popover, Typography } from '../../base';
44
import { iconSmall } from '../../constants/iconsSizes';
55
import { styled, useTheme } from '../../theme';
6+
import { DARK_TEAL_BLUE } from '../../theme/colors/colors';
67
import { 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

7778
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}`,
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

103104
const UserName = styled(Typography)({
104-
marginLeft: '10px',
105-
fontWeight: 600
105+
marginLeft: '10px'
106106
});
107107

108108
const StyledPopover = styled(Popover)(() => ({

0 commit comments

Comments
 (0)