aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/app')
-rw-r--r--apps/mobile/app/dashboard/(tabs)/lists.tsx4
-rw-r--r--apps/mobile/app/dashboard/(tabs)/search.tsx2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/mobile/app/dashboard/(tabs)/lists.tsx b/apps/mobile/app/dashboard/(tabs)/lists.tsx
index a293757b..4a0a6948 100644
--- a/apps/mobile/app/dashboard/(tabs)/lists.tsx
+++ b/apps/mobile/app/dashboard/(tabs)/lists.tsx
@@ -48,8 +48,8 @@ export default function Lists() {
return (
<FlatList
contentContainerStyle={{
- gap: 10,
- marginTop: 10,
+ gap: 5,
+ marginTop: 5,
}}
renderItem={(l) => (
<View className="mx-2 block rounded-xl border border-gray-100 bg-white px-4 py-2">
diff --git a/apps/mobile/app/dashboard/(tabs)/search.tsx b/apps/mobile/app/dashboard/(tabs)/search.tsx
index 0025262e..043dffab 100644
--- a/apps/mobile/app/dashboard/(tabs)/search.tsx
+++ b/apps/mobile/app/dashboard/(tabs)/search.tsx
@@ -27,7 +27,7 @@ export default function Search() {
autoFocus
autoCapitalize="none"
/>
- <Divider orientation="horizontal" className="mb-1 mt-4 w-full" />
+ <Divider orientation="horizontal" className="mt-4 w-full" />
{data && <BookmarkList ids={data.bookmarks.map((b) => b.id)} />}
</View>
);