summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-07-12 14:10:38 -0400
committerDessalines <tyhou13@gmx.com>2020-07-12 14:10:38 -0400
commitc72acfd28238f92aeb944e81992db153670838f5 (patch)
treea4eab76115a19d1c6a4af4b1551cbd3d99631a65
parentff2f70b1de84bece85a8e8e4f02b6b7e963b097e (diff)
Fixing offset for mobile reflow.
-rw-r--r--ui/src/components/post.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx
index 3b0a8d4a..ce737a4e 100644
--- a/ui/src/components/post.tsx
+++ b/ui/src/components/post.tsx
@@ -226,7 +226,7 @@ export class Post extends Component<any, PostState> {
sortRadios() {
return (
<>
- <div class="btn-group btn-group-toggle mb-2">
+ <div class="btn-group btn-group-toggle mr-3 mb-2">
<label
className={`btn btn-sm btn-secondary pointer ${
this.state.commentSort === CommentSortType.Hot && 'active'
@@ -280,7 +280,7 @@ export class Post extends Component<any, PostState> {
/>
</label>
</div>
- <div class="btn-group btn-group-toggle ml-3 mb-2">
+ <div class="btn-group btn-group-toggle mb-2">
<label
className={`btn btn-sm btn-secondary pointer ${
this.state.commentViewType === CommentViewType.Tree && 'active'