summaryrefslogtreecommitdiffstats
path: root/ui/src/components/create-post.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-07-28 18:57:09 -0700
committerDessalines <tyhou13@gmx.com>2019-07-28 18:57:09 -0700
commite27ca774cdf86804ba7e3dca48b50dd15969bdae (patch)
treeb2cb1d04243603572d24bd2be6431d10667de0af /ui/src/components/create-post.tsx
parent5204b96d2f76be217e5edf10c0c52baa5ac0afaf (diff)
Adding similar post searching before creating post.
- Fixes #185. - Offsetting create post and community columns.
Diffstat (limited to 'ui/src/components/create-post.tsx')
-rw-r--r--ui/src/components/create-post.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/create-post.tsx b/ui/src/components/create-post.tsx
index 0e37ba1d..e09bcf70 100644
--- a/ui/src/components/create-post.tsx
+++ b/ui/src/components/create-post.tsx
@@ -17,7 +17,7 @@ export class CreatePost extends Component<any, any> {
return (
<div class="container">
<div class="row">
- <div class="col-12 col-lg-6 mb-4">
+ <div class="col-12 col-lg-6 offset-lg-3 mb-4">
<h5>Create a Post</h5>
<PostForm onCreate={this.handlePostCreate} prevCommunityName={this.prevCommunityName} />
</div>