fix more comments button

This commit is contained in:
Pavel Mineev
2021-06-16 01:17:20 -05:00
committed by Umputun
parent 2b15e9291f
commit 5aa24f95fc
4 changed files with 9 additions and 9 deletions
@@ -1,6 +0,0 @@
.root__show-more {
display: block;
width: 300px;
max-width: 100%;
margin: 20px auto;
}
-1
View File
@@ -5,7 +5,6 @@ import './__input/root__input.css';
import './__preloader/root__preloader.css';
import './__pinned-comment/root__pinned-comment.css';
import './__pinned-comments/root__pinned-comments.css';
import './__show-more/root__show-more.css';
import './__thread/root__thread.css';
import './__threads/root__threads.css';
@@ -0,0 +1,5 @@
.moreComments {
display: block;
max-width: 320px;
margin: 20px auto;
}
+4 -2
View File
@@ -30,7 +30,6 @@ import { fetchComments, updateSorting, addComment, updateComment, unsetCommentMo
import { setCommentsReadOnlyState } from 'store/post-info/actions';
import { setTheme } from 'store/theme/actions';
import { Button } from 'components/button';
import { Preloader } from 'components/preloader';
import { Settings } from 'components/settings';
import { AuthPanel } from 'components/auth-panel';
@@ -44,6 +43,9 @@ import { postMessageToParent, parseMessage } from 'utils/postMessage';
import { useActions } from 'hooks/useAction';
import { setCollapse } from 'store/thread/actions';
import { logout } from 'components/auth/auth.api';
import { Button } from 'components/auth/components/button';
import styles from './Root.module.css';
const mapStateToProps = (state: StoreState) => ({
sort: state.comments.sort,
@@ -304,7 +306,7 @@ export class Root extends Component<Props, State> {
))}
{commentsShown < this.props.topComments.length && IS_MOBILE && (
<Button kind="primary" size="middle" mix="root__show-more" onClick={this.showMore}>
<Button className={clsx('more-comments', styles.moreComments)} onClick={this.showMore}>
<FormattedMessage id="root.show-more" defaultMessage="Show more" />
</Button>
)}