From e6d1f039d207d30fd47df26d7a2ad7de28a3cfe3 Mon Sep 17 00:00:00 2001 From: Priyanshu Sharma Date: Thu, 9 Feb 2023 13:40:16 +0530 Subject: [PATCH] fix(participant-count) Fix mobile style (#12880) --- .../components/web/ParticipantsCounter.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/react/features/participants-pane/components/web/ParticipantsCounter.tsx b/react/features/participants-pane/components/web/ParticipantsCounter.tsx index c9a8c3a55..f71691d5c 100644 --- a/react/features/participants-pane/components/web/ParticipantsCounter.tsx +++ b/react/features/participants-pane/components/web/ParticipantsCounter.tsx @@ -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' } }; });