From 40f86116d658e77b43fb40435cd96fbe77f8c253 Mon Sep 17 00:00:00 2001 From: William Grant Date: Thu, 10 Nov 2022 16:10:44 +1100 Subject: [PATCH] fix: unread messages count styling in actions panel --- ts/components/icon/SessionNotificationCount.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ts/components/icon/SessionNotificationCount.tsx b/ts/components/icon/SessionNotificationCount.tsx index 99da0b924..26281b828 100644 --- a/ts/components/icon/SessionNotificationCount.tsx +++ b/ts/components/icon/SessionNotificationCount.tsx @@ -8,9 +8,10 @@ type Props = { const StyledCountContainer = styled.div<{ shouldRender: boolean }>` position: absolute; font-size: 18px; + line-height: 1.2; top: 27px; - right: 8px; - padding: 0 6px; + left: 28px; + padding: 1px 4px; opacity: 1; display: flex; align-items: center;