From 8d098a2bb9d5b24275d2f06777d3fe5c0b6921df Mon Sep 17 00:00:00 2001 From: Josiah Clumont Date: Mon, 11 May 2026 12:51:18 +1200 Subject: [PATCH] style(dropdown-menu): fix count badge alignment and uniform width [C9S-116] (#2605) --- app/react/components/DropdownMenu/DropdownMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/react/components/DropdownMenu/DropdownMenu.tsx b/app/react/components/DropdownMenu/DropdownMenu.tsx index e70d35563..94618800f 100644 --- a/app/react/components/DropdownMenu/DropdownMenu.tsx +++ b/app/react/components/DropdownMenu/DropdownMenu.tsx @@ -46,7 +46,7 @@ const menuItemUnselected = 'th-highcontrast:text-white th-highcontrast:hover:bg-white th-highcontrast:hover:text-black th-highcontrast:[&[data-selected]]:!bg-white th-highcontrast:[&[data-selected]]:!text-black'; const countBadge = - 'ml-2 rounded-full px-1.5 py-0.5 text-xs font-normal ' + + 'inline-flex items-center justify-center min-w-[1.25rem] h-5 rounded-full px-1 text-xs font-normal ' + 'bg-gray-4 text-gray-9 ' + 'th-dark:bg-gray-7 th-dark:text-gray-3 ' + 'th-highcontrast:bg-blue-8 th-highcontrast:text-white';