From 805c14af6dc70eaf66ba7437e2bced8ef11d4ca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Vay=C3=A1?= Date: Wed, 15 Jan 2025 14:50:40 +0100 Subject: [PATCH] fix spacing between bookmarks, align + icon (#8476) --- .../channel_bookmarks/channel_bookmark/channel_bookmark.tsx | 5 ++++- app/screens/channel/header/bookmarks.tsx | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) 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, }, }));