aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2026-02-01 17:33:17 +0000
committerMohamed Bassem <me@mbassem.com>2026-02-01 17:33:17 +0000
commitfc24cc3a14e7e2d853702a51204835d30ffca253 (patch)
tree9de6d24e082133d2a023e8353877757f11ec1438 /apps/mobile/app
parent5cb7306924925206d543f9d499447314d8026095 (diff)
downloadkarakeep-fc24cc3a14e7e2d853702a51204835d30ffca253.tar.zst
fix(mobile): make the subtext in bookmark info page more subtle
Diffstat (limited to 'apps/mobile/app')
-rw-r--r--apps/mobile/app/dashboard/bookmarks/[slug]/info.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/mobile/app/dashboard/bookmarks/[slug]/info.tsx b/apps/mobile/app/dashboard/bookmarks/[slug]/info.tsx
index c4b76aef..744b7f7d 100644
--- a/apps/mobile/app/dashboard/bookmarks/[slug]/info.tsx
+++ b/apps/mobile/app/dashboard/bookmarks/[slug]/info.tsx
@@ -477,14 +477,14 @@ const ViewBookmarkPage = () => {
</Button>
</View>
)}
- <View className="gap-2">
- <Text className="items-center text-center">
+ <View className="gap-1">
+ <Text className="text-center text-xs text-muted-foreground">
Created {bookmark.createdAt.toLocaleString()}
</Text>
{bookmark.modifiedAt &&
bookmark.modifiedAt.getTime() !==
bookmark.createdAt.getTime() && (
- <Text className="items-center text-center">
+ <Text className="text-center text-xs text-muted-foreground">
Modified {bookmark.modifiedAt.toLocaleString()}
</Text>
)}