diff options
author | Eric Bailey <git@esb.lol> | 2024-10-21 10:56:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-21 10:56:54 -0500 |
commit | 24679d5fe3d9f32593e7f9a6e5946cfb5b3e8434 (patch) | |
tree | 8d59df91f98098190d15d0f015e4dddb738b8d67 /src/view/shell/desktop/LeftNav.tsx | |
parent | 1e723f177ff7174c7eb922daf3274711696f5a7b (diff) | |
download | voidsky-24679d5fe3d9f32593e7f9a6e5946cfb5b3e8434.tar.zst |
Fix NavSignupCard on web (#5813)
Diffstat (limited to 'src/view/shell/desktop/LeftNav.tsx')
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index ecd00a919..1a9ce2005 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -353,7 +353,7 @@ export function DesktopLeftNav() { {hasSession ? ( <ProfileCard /> ) : isDesktop ? ( - <View style={{paddingHorizontal: 12}}> + <View style={[a.pt_xl]}> <NavSignupCard /> </View> ) : null} |