From 0ba0abfcdc976af9721ee80d7a199a7693468b0d Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Fri, 21 Oct 2022 13:27:56 +1100 Subject: [PATCH] fix: padding with only one digit in unread notification count --- ts/components/icon/SessionNotificationCount.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ts/components/icon/SessionNotificationCount.tsx b/ts/components/icon/SessionNotificationCount.tsx index 580586cfc..b4102bf23 100644 --- a/ts/components/icon/SessionNotificationCount.tsx +++ b/ts/components/icon/SessionNotificationCount.tsx @@ -7,12 +7,10 @@ type Props = { const StyledCountContainer = styled.div<{ shouldRender: boolean }>` position: absolute; - width: 24px; - height: 12px; font-size: 18px; top: 27px; right: 8px; - padding: 3px; + padding: 0 6px; opacity: 1; display: flex; align-items: center;