diff options
author | dan <dan.abramov@gmail.com> | 2024-12-14 00:01:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-14 00:01:31 +0000 |
commit | 55222c5b0e57b3c7223fc13778e4cba67579da69 (patch) | |
tree | d2e5a41ef02ec35e103c73f68517233d92b58334 /src/view/screens/Notifications.tsx | |
parent | ca8ca903b271e9f7c901b61cad7580ed7a2b756e (diff) | |
download | voidsky-55222c5b0e57b3c7223fc13778e4cba67579da69.tar.zst |
Fix z-indexes to make tabbar scroll on Android (#7102)
Diffstat (limited to 'src/view/screens/Notifications.tsx')
-rw-r--r-- | src/view/screens/Notifications.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx index 82c68dde6..4794cdcd0 100644 --- a/src/view/screens/Notifications.tsx +++ b/src/view/screens/Notifications.tsx @@ -144,7 +144,7 @@ export function NotificationsScreen({}: Props) { <Pager onPageSelected={onPageSelected} renderTabBar={props => ( - <Layout.Center style={web([a.sticky, a.z_10, {top: 0}])}> + <Layout.Center style={[a.z_10, web([a.sticky, {top: 0}])]}> <TabBar {...props} items={sections.map(section => section.title)} |