summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-05-06 09:26:21 -0700
committerDessalines <tyhou13@gmx.com>2019-05-06 09:26:21 -0700
commit2f0a7c5584ef3a5851490195398c1a72ec89cfcb (patch)
tree2e0cea654d0cd2d949319a0a602e8fe7b1c92e02 /ui/src/components/post.tsx
parentdeb8fd317db81fad4c772c42d4ff086dc60570ac (diff)
Better columns
Diffstat (limited to 'ui/src/components/post.tsx')
-rw-r--r--ui/src/components/post.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx
index 5b0a606c..7b2f790e 100644
--- a/ui/src/components/post.tsx
+++ b/ui/src/components/post.tsx
@@ -80,7 +80,7 @@ export class Post extends Component<any, PostState> {
{this.state.loading ?
<h5><svg class="icon icon-spinner spin"><use xlinkHref="#icon-spinner"></use></svg></h5> :
<div class="row">
- <div class="col-12 col-md-8 col-lg-7 mb-3">
+ <div class="col-12 col-md-8 col-lg-6 mb-3">
<PostListing
post={this.state.post}
showBody
@@ -97,7 +97,7 @@ export class Post extends Component<any, PostState> {
<div class="col-12 col-md-4 col-lg-3 mb-3 d-none d-md-block px-0">
{this.state.comments.length > 0 && this.newComments()}
</div>
- <div class="col-12 col-sm-12 col-lg-2">
+ <div class="col-12 col-sm-12 col-lg-3">
{this.sidebar()}
</div>
</div>
@@ -148,7 +148,7 @@ export class Post extends Component<any, PostState> {
sidebar() {
return (
- <div class="sticky-top">
+ <div class="">
<Sidebar
community={this.state.community}
moderators={this.state.moderators}