Bluesky app fork with some witchin' additions 💫

[APP-1823] Fix 'create account' / 'sign in' buttons stacking (#9830)

* ensure enough space for sign in buttons

* smallest possible adjustment

* smallest possible adjustment

authored by

Spence Pope and committed by
GitHub
18ab5d6f dc3f0159

+5 -1
+1 -1
src/view/shell/NavSignupCard.tsx
··· 29 29 }, [requestSwitchToAccount, closeAllActiveElements]) 30 30 31 31 return ( 32 - <View style={[{maxWidth: 200}]}> 32 + <View style={[{maxWidth: 245}]}> 33 33 <Link to="/" label="Bluesky - Home"> 34 34 <Logo width={32} /> 35 35 </Link>
+4
src/view/shell/desktop/LeftNav.tsx
··· 628 628 style={[ 629 629 a.px_xl, 630 630 styles.leftNav, 631 + !hasSession && !leftNavMinimal && styles.leftNavWide, 631 632 leftNavMinimal && styles.leftNavMinimal, 632 633 { 633 634 transform: [ ··· 820 821 // @ts-expect-error web only 821 822 maxHeight: '100vh', 822 823 overflowY: 'auto', 824 + }, 825 + leftNavWide: { 826 + width: 245, 823 827 }, 824 828 leftNavMinimal: { 825 829 paddingTop: 0,