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/NavSignupCard.tsx | |
parent | 1e723f177ff7174c7eb922daf3274711696f5a7b (diff) | |
download | voidsky-24679d5fe3d9f32593e7f9a6e5946cfb5b3e8434.tar.zst |
Fix NavSignupCard on web (#5813)
Diffstat (limited to 'src/view/shell/NavSignupCard.tsx')
-rw-r--r-- | src/view/shell/NavSignupCard.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/shell/NavSignupCard.tsx b/src/view/shell/NavSignupCard.tsx index 05533328c..63648db4c 100644 --- a/src/view/shell/NavSignupCard.tsx +++ b/src/view/shell/NavSignupCard.tsx @@ -64,8 +64,8 @@ let NavSignupCard = ({}: {}): React.ReactNode => { </Button> </View> - <View style={[a.pt_2xl, a.w_full]}> - <AppLanguageDropdown /> + <View style={[a.mt_md, a.w_full, {height: 32}]}> + <AppLanguageDropdown style={{marginTop: 0}} /> </View> </View> ) |