From 1c6622e809c634ba964a4c376d07bee73ade1adf Mon Sep 17 00:00:00 2001 From: vsecoder Date: Sat, 18 Apr 2026 21:37:46 +0300 Subject: [PATCH] fix(feed): more vertical gap between header and post content MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit marginTop 8 → 14 on the content Pressable. Gives the body text a clear visual separation from the avatar/name header instead of sitting flush under it. Co-Authored-By: Claude Opus 4.7 (1M context) --- client-app/components/feed/PostCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-app/components/feed/PostCard.tsx b/client-app/components/feed/PostCard.tsx index 6ffd902..6fbc8d0 100644 --- a/client-app/components/feed/PostCard.tsx +++ b/client-app/components/feed/PostCard.tsx @@ -255,7 +255,7 @@ function PostCardInner({ post, likedByMe, onStatsChanged, onDeleted, compact }: onPress={onOpenDetail} onLongPress={onLongPress} style={({ pressed }) => ({ - marginTop: 8, + marginTop: 14, overflow: 'hidden', opacity: pressed ? 0.85 : 1, })}