diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-16 22:02:44 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-16 22:02:44 -0500 |
commit | 244b06c19d57901b1fee04a742396f6c360339d9 (patch) | |
tree | b3120adba4b1fca84163f05a3a222af6e911fd3b /src/view/screens/Home.tsx | |
parent | 71209bb3aca1104773ee9fab20ec9f9ab4fc3ad2 (diff) | |
download | voidsky-244b06c19d57901b1fee04a742396f6c360339d9.tar.zst |
Visual tune-up
Diffstat (limited to 'src/view/screens/Home.tsx')
-rw-r--r-- | src/view/screens/Home.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx index fa200e931..b38e1cc36 100644 --- a/src/view/screens/Home.tsx +++ b/src/view/screens/Home.tsx @@ -58,11 +58,11 @@ export const HomeScreen = withAuthRequired((_opts: Props) => { const renderTabBar = React.useCallback( (props: TabBarProps) => { return ( - <View style={[pal.view, styles.tabBar]}> + <View style={[pal.view, pal.border, styles.tabBar]}> <TouchableOpacity style={styles.tabBarAvi} onPress={onPressAvi}> <UserAvatar avatar={store.me.avatar} size={32} /> </TouchableOpacity> - <TabBar items={['Popular', 'Following']} {...props} /> + <TabBar items={['Suggested', 'Following']} {...props} /> </View> ) }, @@ -273,8 +273,10 @@ const styles = StyleSheet.create({ flexDirection: 'row', alignItems: 'center', paddingHorizontal: 18, + borderBottomWidth: 1, }, tabBarAvi: { marginRight: 16, + paddingBottom: 2, }, }) |