diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-25 20:28:01 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-25 20:28:01 -0500 |
commit | 9da5a1a780015a065ae9481184130d95ef141027 (patch) | |
tree | c190fc54965d625c193525bb78aed67ea07922d1 /src | |
parent | 0a1f912ece10c28a975c91359c61bd000f9af909 (diff) | |
parent | 2c970781b767c8fafdb48768fb4fc0faa62f6428 (diff) | |
download | voidsky-9da5a1a780015a065ae9481184130d95ef141027.tar.zst |
Merge branch 'custom-algos' of github.com:bluesky-social/social-app into custom-algos
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/search/HeaderWithInput.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/view/com/search/HeaderWithInput.tsx b/src/view/com/search/HeaderWithInput.tsx index 7d0eeb2db..43c15030a 100644 --- a/src/view/com/search/HeaderWithInput.tsx +++ b/src/view/com/search/HeaderWithInput.tsx @@ -58,7 +58,7 @@ export function HeaderWithInput({ accessibilityRole="button" accessibilityLabel="Back" accessibilityHint=""> - <UserAvatar size={30} avatar={store.me.avatar} /> + <FontAwesomeIcon icon="bars" size={18} color={pal.colors.textLight} /> </TouchableOpacity> <View style={[ @@ -121,6 +121,7 @@ const styles = StyleSheet.create({ header: { flexDirection: 'row', alignItems: 'center', + justifyContent: 'center', paddingHorizontal: 12, paddingVertical: 4, }, @@ -128,7 +129,10 @@ const styles = StyleSheet.create({ width: 30, height: 30, borderRadius: 30, - marginHorizontal: 6, + marginRight: 6, + paddingBottom: 2, + alignItems: 'center', + justifyContent: 'center', }, headerSearchContainer: { flex: 1, |