diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-10-17 03:43:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-16 19:43:10 -0500 |
commit | 21542c4a77a51bfcd6c2f48801559f901f504181 (patch) | |
tree | ed7c3e3cf4eee17aebec8a3e0349bb90c41df5d3 /src/view/shell/index.tsx | |
parent | 6bc00f8d714fa1113d03f57ec06caccd4ffbb9dc (diff) | |
download | voidsky-21542c4a77a51bfcd6c2f48801559f901f504181.tar.zst |
Clean up drawer (#5761)
* clean up drawer * add a lil bit of padding * Drawer nits (#5778) * Avi stuff * Rm SafeAreaView, not working on Android * Dividers and spacing * Fix count on android, ended up refactoring the whole MenuItem * Litttttle more space * Improve NavSignupCard * format nit --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com> --------- Co-authored-by: Eric Bailey <git@esb.lol>
Diffstat (limited to 'src/view/shell/index.tsx')
-rw-r--r-- | src/view/shell/index.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/shell/index.tsx b/src/view/shell/index.tsx index 43f8ee656..ae81a4eb4 100644 --- a/src/view/shell/index.tsx +++ b/src/view/shell/index.tsx @@ -96,6 +96,7 @@ function ShellInner() { <ErrorBoundary> <Drawer renderDrawerContent={renderDrawerContent} + drawerStyle={{width: Math.min(400, winDim.width * 0.8)}} open={isDrawerOpen} onOpen={onOpenDrawer} onClose={onCloseDrawer} |