mirror of https://github.com/LemmyNet/lemmy.git
Fixing offset for mobile reflow.
parent
ff2f70b1de
commit
c72acfd282
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue