diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-15 00:16:02 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-15 00:23:27 +0000 |
| commit | 5953ef044e211085dbc6e3f779200bda4d9ae8bd (patch) | |
| tree | 5778e607bc7f192bd46f6e5094e1e42e3de5bdc4 /apps/mobile/app | |
| parent | 4691c63466ed532edc6f727a4e08f159f9a2d790 (diff) | |
| download | karakeep-5953ef044e211085dbc6e3f779200bda4d9ae8bd.tar.zst | |
mobile: Revert the margins around the cards
Diffstat (limited to 'apps/mobile/app')
| -rw-r--r-- | apps/mobile/app/dashboard/(tabs)/lists.tsx | 4 | ||||
| -rw-r--r-- | apps/mobile/app/dashboard/(tabs)/search.tsx | 2 |
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> ); |
