From 615c8f3b81214c308c7445a5bfcfd2216474bd0a Mon Sep 17 00:00:00 2001 From: Sudheer Date: Thu, 13 Dec 2018 17:51:56 +0530 Subject: [PATCH] MM-13333 Fix minor alignment issue with reply thread indicator (#2456) * Add a pixel to margin right for profile_picture container to compensate status icon platform styles --- app/components/post/post.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app/components/post/post.js b/app/components/post/post.js index 052d6a775..7e6211b07 100644 --- a/app/components/post/post.js +++ b/app/components/post/post.js @@ -383,9 +383,18 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { }, profilePictureContainer: { marginBottom: 5, - marginRight: 10, marginLeft: 12, marginTop: 10, + + // to compensate STATUS_BUFFER in profile_picture component + ...Platform.select({ + android: { + marginRight: 11, + }, + ios: { + marginRight: 10, + }, + }), }, replyBar: { backgroundColor: theme.centerChannelColor,