From 7b5a5ccbf9e3537061aa048ace079c84d5e63962 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 3 Dec 2024 18:47:42 -0600 Subject: [PATCH] Increase width --- src/view/shell/desktop/LeftNav.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index 2cb94e69fd..40cb724564 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -180,12 +180,14 @@ function NavItem({count, href, icon, iconFilled, label}: NavItemProps) { accessibilityLabel={_(msg`${count} unread items`)} accessibilityHint="" accessible={true} + numberOfLines={1} style={[ a.absolute, a.text_xs, a.font_bold, a.rounded_full, a.text_center, + a.leading_tight, { top: '-10%', left: count.length === 1 ? '50%' : '40%', @@ -323,7 +325,6 @@ export function DesktopLeftNav() { role="navigation" style={[ a.px_xl, - a.pr_5xl, styles.leftNav, isTablet && styles.leftNavTablet, pal.view,