about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-06-04 18:19:26 -0700
committerGitHub <noreply@github.com>2024-06-05 02:19:26 +0100
commit7613cdb89b4929d97219f2a5c2830a73947bb28a (patch)
treee66ef34611d908b9f243295ee2f44e23f159fd3d
parent3ece21cb45e8b74795f4eac33a1551b303196946 (diff)
downloadvoidsky-7613cdb89b4929d97219f2a5c2830a73947bb28a.tar.zst
Fix: visually indicate when quoted content is labeled (#4369)
-rw-r--r--src/view/com/util/post-embeds/QuoteEmbed.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/view/com/util/post-embeds/QuoteEmbed.tsx b/src/view/com/util/post-embeds/QuoteEmbed.tsx
index d7624b431..4e2e19f58 100644
--- a/src/view/com/util/post-embeds/QuoteEmbed.tsx
+++ b/src/view/com/util/post-embeds/QuoteEmbed.tsx
@@ -181,9 +181,11 @@ export function QuoteEmbed({
   }, [queryClient, quote.author, onOpen])
 
   return (
-    <ContentHider modui={moderation?.ui('contentList')}>
+    <ContentHider
+      modui={moderation?.ui('contentList')}
+      style={[styles.container, pal.borderDark, style]}
+      childContainerStyle={[a.pt_sm]}>
       <Link
-        style={[styles.container, pal.borderDark, style]}
         hoverStyle={{borderColor: pal.colors.borderLinkHover}}
         href={itemHref}
         title={itemTitle}