From ccd09995669bfc0f4d66236cc1488fa3151baf75 Mon Sep 17 00:00:00 2001 From: Mihaela Dumitru Date: Mon, 6 Oct 2025 13:40:41 +0300 Subject: [PATCH] fix(ui): improve tab badge styling (#16507) --- react/features/base/ui/components/web/Tabs.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/react/features/base/ui/components/web/Tabs.tsx b/react/features/base/ui/components/web/Tabs.tsx index 283029cd0d..de2a4cd2a0 100644 --- a/react/features/base/ui/components/web/Tabs.tsx +++ b/react/features/base/ui/components/web/Tabs.tsx @@ -71,11 +71,16 @@ const useStyles = makeStyles()(theme => { badge: { ...theme.typography.labelBold, - color: theme.palette.text04, - padding: `0 ${theme.spacing(1)}`, - borderRadius: '100%', + alignItems: 'center', backgroundColor: theme.palette.warning01, - marginLeft: theme.spacing(2) + borderRadius: theme.spacing(2), + color: theme.palette.text04, + display: 'inline-flex', + height: theme.spacing(3), + justifyContent: 'center', + marginLeft: theme.spacing(2), + minWidth: theme.spacing(2), + padding: `0 ${theme.spacing(1)}` }, icon: {