Fixing offset for mobile reflow.

This commit is contained in:
Dessalines 2020-07-12 14:10:38 -04:00
parent ff2f70b1de
commit c72acfd282
1 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@ export class Post extends Component<any, PostState> {
sortRadios() { sortRadios() {
return ( return (
<> <>
<div class="btn-group btn-group-toggle mb-2"> <div class="btn-group btn-group-toggle mr-3 mb-2">
<label <label
className={`btn btn-sm btn-secondary pointer ${ className={`btn btn-sm btn-secondary pointer ${
this.state.commentSort === CommentSortType.Hot && 'active' this.state.commentSort === CommentSortType.Hot && 'active'
@ -280,7 +280,7 @@ export class Post extends Component<any, PostState> {
/> />
</label> </label>
</div> </div>
<div class="btn-group btn-group-toggle ml-3 mb-2"> <div class="btn-group btn-group-toggle mb-2">
<label <label
className={`btn btn-sm btn-secondary pointer ${ className={`btn btn-sm btn-secondary pointer ${
this.state.commentViewType === CommentViewType.Tree && 'active' this.state.commentViewType === CommentViewType.Tree && 'active'