fix(participant-count) Fix mobile style (#12880)

This commit is contained in:
Priyanshu Sharma 2023-02-09 13:40:16 +05:30 committed by GitHub
parent fef78152e1
commit e6d1f039d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -11,13 +11,16 @@ const useStyles = makeStyles()(theme => {
backgroundColor: theme.palette.ui03,
borderRadius: '100%',
height: '16px',
width: '16px',
minWidth: '16px',
color: theme.palette.text01,
...withPixelLineHeight(theme.typography.labelBold),
pointerEvents: 'none',
position: 'absolute',
right: '-4px',
top: '-3px'
top: '-3px',
textAlign: 'center',
boxSizing: 'border-box',
paddingTop: '2px'
}
};
});