aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/bookmarks/BookmarkCard.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/components/bookmarks/BookmarkCard.tsx')
-rw-r--r--apps/mobile/components/bookmarks/BookmarkCard.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/mobile/components/bookmarks/BookmarkCard.tsx b/apps/mobile/components/bookmarks/BookmarkCard.tsx
index c995d593..128696a1 100644
--- a/apps/mobile/components/bookmarks/BookmarkCard.tsx
+++ b/apps/mobile/components/bookmarks/BookmarkCard.tsx
@@ -333,5 +333,9 @@ export default function BookmarkCard({
break;
}
- return <View className="border-b border-accent bg-background">{comp}</View>;
+ return (
+ <View className="overflow-hidden rounded-xl border-b border-accent bg-background">
+ {comp}
+ </View>
+ );
}