Fixing offset for mobile reflow.
This commit is contained in:
parent
ff2f70b1de
commit
c72acfd282
1 changed files with 2 additions and 2 deletions
4
ui/src/components/post.tsx
vendored
4
ui/src/components/post.tsx
vendored
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue