diff --git a/web/app/components/auth-panel/auth-panel.jsx b/web/app/components/auth-panel/auth-panel.jsx index 346d1754..651612f6 100644 --- a/web/app/components/auth-panel/auth-panel.jsx +++ b/web/app/components/auth-panel/auth-panel.jsx @@ -46,7 +46,7 @@ export default class AuthPanel extends Component { {user.name} {isUserIdVisible && ({user.id})}. {' '} - Sign out? + Sign out? ) } @@ -66,6 +66,7 @@ export default class AuthPanel extends Component { props.onSignIn(provider)} >{PROVIDER_NAMES[provider]} @@ -83,6 +84,7 @@ export default class AuthPanel extends Component { {isBlockedVisible ? 'Hide' : 'Show'} blocked ) diff --git a/web/app/components/blocked-users/blocked-users.jsx b/web/app/components/blocked-users/blocked-users.jsx index dcc55828..9ea0470d 100644 --- a/web/app/components/blocked-users/blocked-users.jsx +++ b/web/app/components/blocked-users/blocked-users.jsx @@ -35,7 +35,7 @@ export default class BlockedUsers extends Component { const { users } = props; return ( -
+
{ !users.length && (

There are no blocked users.

diff --git a/web/app/components/comment/comment.jsx b/web/app/components/comment/comment.jsx index 74202c4f..f813838e 100644 --- a/web/app/components/comment/comment.jsx +++ b/web/app/components/comment/comment.jsx @@ -244,7 +244,7 @@ export default class Comment extends Component { if (mods.view === 'preview') { return ( -
+
{o.user.name} @@ -255,12 +255,12 @@ export default class Comment extends Component { dangerouslySetInnerHTML={{ __html: o.text }} />
-
+
); } return ( -
+
) @@ -308,7 +309,7 @@ export default class Comment extends Component { Vote up @@ -428,7 +429,7 @@ export default class Comment extends Component { /> ) } -
+
); } } diff --git a/web/app/components/comment/comment.scss b/web/app/components/comment/comment.scss index c725d7cc..f897b3d0 100644 --- a/web/app/components/comment/comment.scss +++ b/web/app/components/comment/comment.scss @@ -1,4 +1,5 @@ .comment { + display: block; position: relative; overflow: hidden; margin-bottom: 16px; diff --git a/web/app/components/root/root.jsx b/web/app/components/root/root.jsx index 6398d136..c3fe7704 100644 --- a/web/app/components/root/root.jsx +++ b/web/app/components/root/root.jsx @@ -223,7 +223,7 @@ export default class Root extends Component { { !!pinnedComments.length && ( -
+
{ pinnedComments.map(comment => ( +
{ comments.map(thread => ( +
) @@ -268,7 +268,7 @@ export default class Root extends Component { { isBlockedVisible && ( -
+
) diff --git a/web/app/components/thread/thread.jsx b/web/app/components/thread/thread.jsx index fa7d80f7..6cc5ae46 100644 --- a/web/app/components/thread/thread.jsx +++ b/web/app/components/thread/thread.jsx @@ -22,7 +22,10 @@ export default class Thread extends Component { const { data: { comment, replies = [] }, mix, mods = {}, onReplyClick } = props; return ( -
+