diff options
author | Eric Bailey <git@esb.lol> | 2024-10-17 09:35:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-17 09:35:33 -0500 |
commit | 444c6e6a9f7e2703d0eb5f2379ce19cf2a91c991 (patch) | |
tree | c2ffe80445f87453c96e3658a0d0910924390f40 /src/view/shell/Drawer.tsx | |
parent | 34f1e4d71c62b26458a530a6b56cf8aee719561e (diff) | |
download | voidsky-444c6e6a9f7e2703d0eb5f2379ce19cf2a91c991.tar.zst |
Fix up drawer background (#5785)
Diffstat (limited to 'src/view/shell/Drawer.tsx')
-rw-r--r-- | src/view/shell/Drawer.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx index b6e20dcaf..45a697eeb 100644 --- a/src/view/shell/Drawer.tsx +++ b/src/view/shell/Drawer.tsx @@ -22,8 +22,7 @@ import {useSetDrawerOpen} from '#/state/shell' import {formatCount} from '#/view/com/util/numeric/format' import {UserAvatar} from '#/view/com/util/UserAvatar' import {NavSignupCard} from '#/view/shell/NavSignupCard' -import {atoms as a} from '#/alf' -import {useTheme} from '#/alf' +import {atoms as a, useTheme, web} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {Divider} from '#/components/Divider' import { @@ -629,7 +628,7 @@ function MenuItem({ ) : undefined} </View> <Text - style={[a.flex_1, a.text_2xl, bold && a.font_bold]} + style={[a.flex_1, a.text_2xl, bold && a.font_bold, web(a.leading_snug)]} numberOfLines={1}> {label} </Text> |