diff options
Diffstat (limited to 'src/view/screens')
-rw-r--r-- | src/view/screens/Notifications.tsx | 2 | ||||
-rw-r--r-- | src/view/screens/Search/Search.tsx | 3 |
2 files changed, 3 insertions, 2 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)} diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx index ed62c5a51..21f9c988f 100644 --- a/src/view/screens/Search/Search.tsx +++ b/src/view/screens/Search/Search.tsx @@ -532,7 +532,8 @@ let SearchScreenInner = ({ renderTabBar={props => ( <Layout.Center style={[ - web([a.sticky, a.z_10]), + a.z_10, + web([a.sticky]), {top: isWeb ? headerHeight : undefined}, ]}> <TabBar items={sections.map(section => section.title)} {...props} /> |