From 18ab5d6f34f87c2851e02fc4c64afb07f6b6f475 Mon Sep 17 00:00:00 2001 From: Spence Pope Date: Thu, 5 Feb 2026 11:40:25 -0500 Subject: [PATCH] [APP-1823] Fix 'create account' / 'sign in' buttons stacking (#9830) * ensure enough space for sign in buttons * smallest possible adjustment * smallest possible adjustment --- src/view/shell/NavSignupCard.tsx | 2 +- src/view/shell/desktop/LeftNav.tsx | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/view/shell/NavSignupCard.tsx b/src/view/shell/NavSignupCard.tsx index 062e4f880d..6f3dd749d4 100644 --- a/src/view/shell/NavSignupCard.tsx +++ b/src/view/shell/NavSignupCard.tsx @@ -29,7 +29,7 @@ let NavSignupCard = ({}: {}): React.ReactNode => { }, [requestSwitchToAccount, closeAllActiveElements]) return ( - + diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index ccbc7aeb22..3e9ccea647 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -628,6 +628,7 @@ export function DesktopLeftNav() { style={[ a.px_xl, styles.leftNav, + !hasSession && !leftNavMinimal && styles.leftNavWide, leftNavMinimal && styles.leftNavMinimal, { transform: [ @@ -821,6 +822,9 @@ const styles = StyleSheet.create({ maxHeight: '100vh', overflowY: 'auto', }, + leftNavWide: { + width: 245, + }, leftNavMinimal: { paddingTop: 0, paddingBottom: 0,