summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-04-08 17:10:24 -0700
committerDessalines <tyhou13@gmx.com>2019-04-08 17:10:24 -0700
commit4cfe9700892e85562c4f296be8c4c6f699f52710 (patch)
tree1f36ad199a7512aa01e64769f34b4e54ff2c0f6a
parent0469b5f0c7e8c34b02155e29dfe3234cfc8cc305 (diff)
More styling.
-rw-r--r--ui/src/components/community.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/components/community.tsx b/ui/src/components/community.tsx
index 06504378..13f6f68e 100644
--- a/ui/src/components/community.tsx
+++ b/ui/src/components/community.tsx
@@ -62,11 +62,11 @@ export class Community extends Component<any, State> {
{this.state.loading ?
<h4><svg class="icon icon-spinner spin"><use xlinkHref="#icon-spinner"></use></svg></h4> :
<div class="row">
- <div class="col-12 col-lg-9">
+ <div class="col-12 col-md-9">
<h4>{this.state.community.title}</h4>
<PostListings communityId={this.state.communityId} />
</div>
- <div class="col-12 col-lg-3">
+ <div class="col-12 col-md-3">
<Sidebar community={this.state.community} moderators={this.state.moderators} />
</div>
</div>