diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx index 9f489466b..586bda75a 100644 --- a/ui/src/components/post.tsx +++ b/ui/src/components/post.tsx @@ -80,7 +80,7 @@ export class Post extends Component { {this.state.loading ?
:
-
+
{ {this.sortRadios()} {this.commentsTree()}
-
+
{this.state.comments.length > 0 && this.newComments()}
-
+
{this.sidebar()}
diff --git a/ui/src/css/main.css b/ui/src/css/main.css index 832149f44..61e068cdb 100644 --- a/ui/src/css/main.css +++ b/ui/src/css/main.css @@ -89,5 +89,9 @@ blockquote { .new-comments { max-height: 100vh; + overflow: hidden; +} + +.new-comments:hover { overflow-y: auto; }