diff --git a/src/view/com/modals/PreferencesHomeFeed.tsx b/src/view/com/modals/PreferencesHomeFeed.tsx index 0950b6366a..32620b3aab 100644 --- a/src/view/com/modals/PreferencesHomeFeed.tsx +++ b/src/view/com/modals/PreferencesHomeFeed.tsx @@ -23,10 +23,12 @@ function RepliesThresholdInput({enabled}: {enabled: boolean}) { marginTop: 10, opacity: enabled ? 1 : 0.3, }}> - + {value === 0 ? `Show all replies` - : `Show replies with greater than ${value} likes`} + : `Show replies with greater than ${value} ${ + value > 1 ? `likes` : `like` + }`} - - Home Feed Preferences - + + + Home Feed Preferences + + + Fine-tune the content you see on your home screen. + + - - - Show Replies - - - Replies are shown in your home feed by default. If this setting is - disabled, you'll see only new posts and threads. - - + + + + Show Replies + + + Adjust the number of likes a reply must have to be shown in your + feed. + + - - + + - - - Show Reposts - - Description - - + + + Show Reposts + + + Disable this setting to hide all reposts from your feed. + + + - - - Show Quote Posts - - Description - + + + Show Quote Posts + + + Disable this setting to hide all quote posts from your feed. + Reposts will still be visible. + + + @@ -125,15 +139,18 @@ export const Component = observer(function Component() { const styles = StyleSheet.create({ container: { flex: 1, - padding: 20, paddingBottom: isDesktopWeb ? 0 : 60, }, title: { textAlign: 'center', - marginBottom: 20, + marginBottom: 5, + }, + description: { + textAlign: 'center', + paddingHorizontal: 32, }, card: { - ...s.p20, + padding: 16, backgroundColor: s.gray1.color, borderRadius: 10, marginBottom: 20, @@ -147,8 +164,8 @@ const styles = StyleSheet.create({ backgroundColor: colors.blue3, }, btnContainer: { - paddingTop: 10, - paddingHorizontal: 10, + paddingTop: 20, + paddingHorizontal: 20, borderTopWidth: isDesktopWeb ? 0 : 1, }, }) diff --git a/src/view/screens/Settings.tsx b/src/view/screens/Settings.tsx index b145741fef..75785c01ad 100644 --- a/src/view/screens/Settings.tsx +++ b/src/view/screens/Settings.tsx @@ -396,7 +396,7 @@ export const SettingsScreen = withAuthRequired( /> - Preferences + Home Feed Preferences