diff --git a/app/components/channel_bookmarks/channel_bookmark/channel_bookmark.tsx b/app/components/channel_bookmarks/channel_bookmark/channel_bookmark.tsx index 3ee3fedfe..5490a0a21 100644 --- a/app/components/channel_bookmarks/channel_bookmark/channel_bookmark.tsx +++ b/app/components/channel_bookmarks/channel_bookmark/channel_bookmark.tsx @@ -47,7 +47,10 @@ const styles = StyleSheet.create({ paddingVertical: 6, height: 48, }, - button: {backgroundColor: 'transparent'}, + button: { + backgroundColor: 'transparent', + paddingHorizontal: 0, + }, }); const openLink = async (href: string, serverUrl: string, siteURL: string, intl: IntlShape) => { diff --git a/app/screens/channel/header/bookmarks.tsx b/app/screens/channel/header/bookmarks.tsx index e146ce7d8..aec1efd1f 100644 --- a/app/screens/channel/header/bookmarks.tsx +++ b/app/screens/channel/header/bookmarks.tsx @@ -37,7 +37,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ paddingTop: 2, }, paddingHorizontal: { - paddingHorizontal: 10, + paddingLeft: 10, }, }));