diff --git a/src/view/com/auth/onboarding/RecommendedFeeds.tsx b/src/view/com/auth/onboarding/RecommendedFeeds.tsx index f6b40b88de..4a3200168b 100644 --- a/src/view/com/auth/onboarding/RecommendedFeeds.tsx +++ b/src/view/com/auth/onboarding/RecommendedFeeds.tsx @@ -19,9 +19,9 @@ export const RecommendedFeeds = observer(({next}: Props) => { return ( - + - Check out some recommended feeds. Click + to add them to your list of + Check out some recommended feeds. Tap + to add them to your list of pinned feeds. @@ -72,14 +72,15 @@ const Item = ({item}: {item: ItemProps}) => { const styles = StyleSheet.create({ container: { flex: 1, - marginHorizontal: 16, justifyContent: 'space-between', }, header: { marginBottom: 16, + marginHorizontal: 16, }, button: { - marginBottom: 48, + marginBottom: 24, + marginHorizontal: 16, marginTop: 16, }, buttonText: { diff --git a/src/view/com/util/ViewHeader.tsx b/src/view/com/util/ViewHeader.tsx index 47e631072a..7482db8eb1 100644 --- a/src/view/com/util/ViewHeader.tsx +++ b/src/view/com/util/ViewHeader.tsx @@ -100,9 +100,9 @@ export const ViewHeader = observer(function ({ {renderButton ? ( renderButton() - ) : ( + ) : showBackButton ? ( - )} + ) : null} ) }