diff --git a/app/components/post_body/post_body.js b/app/components/post_body/post_body.js index bb30ecf59..7700e8872 100644 --- a/app/components/post_body/post_body.js +++ b/app/components/post_body/post_body.js @@ -407,21 +407,19 @@ export default class PostBody extends PureComponent { return ( - - {body} - {isFailed && - - - - } - + {body} + {isFailed && + + + + } ); } @@ -429,13 +427,10 @@ export default class PostBody extends PureComponent { const getStyleSheet = makeStyleSheetFromTheme((theme) => { return { - row: { - flexDirection: 'row', - }, messageBody: { paddingBottom: 2, paddingTop: 2, - width: '100%', + flex: 1, }, messageContainer: { width: '100%', @@ -445,7 +440,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { }, retry: { justifyContent: 'center', - marginLeft: 12, + marginLeft: 10, }, message: { color: theme.centerChannelColor, @@ -454,6 +449,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { }, messageContainerWithReplyBar: { flexDirection: 'row', + width: '100%', }, pendingPost: { opacity: 0.5,