diff options
Diffstat (limited to 'src/view/com/pager')
-rw-r--r-- | src/view/com/pager/FeedsTabBar.web.tsx | 3 | ||||
-rw-r--r-- | src/view/com/pager/FeedsTabBarMobile.tsx | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/pager/FeedsTabBar.web.tsx b/src/view/com/pager/FeedsTabBar.web.tsx index d80b140ce..0fc1b7310 100644 --- a/src/view/com/pager/FeedsTabBar.web.tsx +++ b/src/view/com/pager/FeedsTabBar.web.tsx @@ -63,11 +63,10 @@ const styles = StyleSheet.create({ position: 'absolute', zIndex: 1, left: '50%', - width: 640, + width: 598, top: 0, flexDirection: 'row', alignItems: 'center', - paddingHorizontal: 18, }, tabBarAvi: { marginTop: 1, diff --git a/src/view/com/pager/FeedsTabBarMobile.tsx b/src/view/com/pager/FeedsTabBarMobile.tsx index 76e0a6fc6..e7d2ec104 100644 --- a/src/view/com/pager/FeedsTabBarMobile.tsx +++ b/src/view/com/pager/FeedsTabBarMobile.tsx @@ -33,7 +33,7 @@ export const FeedsTabBar = observer( }, [store]) return ( - <Animated.View style={[pal.view, styles.tabBar, transform]}> + <Animated.View style={[pal.view, pal.border, styles.tabBar, transform]}> <TouchableOpacity testID="viewHeaderDrawerBtn" style={styles.tabBarAvi} @@ -61,6 +61,7 @@ const styles = StyleSheet.create({ flexDirection: 'row', alignItems: 'center', paddingHorizontal: 18, + borderBottomWidth: 1, }, tabBarAvi: { marginTop: 1, |