aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/bookmarks/BookmarkList.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-15 00:16:02 +0000
committerMohamedBassem <me@mbassem.com>2024-03-15 00:23:27 +0000
commit5953ef044e211085dbc6e3f779200bda4d9ae8bd (patch)
tree5778e607bc7f192bd46f6e5094e1e42e3de5bdc4 /apps/mobile/components/bookmarks/BookmarkList.tsx
parent4691c63466ed532edc6f727a4e08f159f9a2d790 (diff)
downloadkarakeep-5953ef044e211085dbc6e3f779200bda4d9ae8bd.tar.zst
mobile: Revert the margins around the cards
Diffstat (limited to 'apps/mobile/components/bookmarks/BookmarkList.tsx')
-rw-r--r--apps/mobile/components/bookmarks/BookmarkList.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/mobile/components/bookmarks/BookmarkList.tsx b/apps/mobile/components/bookmarks/BookmarkList.tsx
index 79d3d79e..0c8ddb3c 100644
--- a/apps/mobile/components/bookmarks/BookmarkList.tsx
+++ b/apps/mobile/components/bookmarks/BookmarkList.tsx
@@ -42,12 +42,11 @@ export default function BookmarkList({
itemLayoutAnimation={LinearTransition}
contentContainerStyle={{
gap: 15,
- marginVertical: 15,
- alignItems: "center",
+ marginBottom: 15,
}}
renderItem={(b) => <BookmarkCard bookmark={b.item} />}
ListEmptyComponent={
- <View className="h-full items-center justify-center">
+ <View className="h-full pt-4 items-center justify-center">
<Text className="text-xl">No Bookmarks</Text>
</View>
}