aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Post.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-12-07 15:09:52 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:54 +0300
commitff8855f3a5d10bed084406ae5a7a69d4ed2f24de (patch)
tree40e22e8f6cf413964ea28283f8dae3e852dffe2d /vnext/src/components/Post.js
parent477b6deb29bf5ea6dd6adba62205cd10fcf9c36d (diff)
Fix Post layout
Diffstat (limited to 'vnext/src/components/Post.js')
-rw-r--r--vnext/src/components/Post.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/vnext/src/components/Post.js b/vnext/src/components/Post.js
index 1776fe78..3fdb0361 100644
--- a/vnext/src/components/Post.js
+++ b/vnext/src/components/Post.js
@@ -41,12 +41,10 @@ export default class Post extends React.Component {
}
render() {
return (
- <div className="msgs">
- <div className="msg-cont">
- <MessageInput rows="7" text={this.state.body} data={{ mid: 0, timestamp: '0' }} onSend={this.postMessage}>
- *weather It is very cold today!
- </MessageInput>
- </div>
+ <div className="msg-cont">
+ <MessageInput rows="7" text={this.state.body} data={{ mid: 0, timestamp: '0' }} onSend={this.postMessage}>
+ *weather It is very cold today!
+ </MessageInput>
</div>
);
}