diff --git a/webclient/src/Comments.js b/webclient/src/Comments.js
index 6da4ba1..5ae75b8 100644
--- a/webclient/src/Comments.js
+++ b/webclient/src/Comments.js
@@ -93,7 +93,7 @@ function Comments({ cache }) {
[Empty / deleted comment]'}} />
{hidden && hasChildren ?
-
expandComment(cid)}>[show {countComments(c)-1} more]
+
:
c.comments.map(i => displayComment(story, i, level + 1))
}
diff --git a/webclient/src/Style-light.css b/webclient/src/Style-light.css
index 0abd3c1..7925923 100644
--- a/webclient/src/Style-light.css
+++ b/webclient/src/Style-light.css
@@ -225,6 +225,21 @@ button.collapser {
color: inherit;
}
+button.comment {
+ background: transparent;
+ border-top: none;
+ border-right: none;
+ border-bottom: none;
+ margin: 0;
+ padding-top: 0;
+ padding-right: 0;
+ padding-bottom: 0;
+ font: inherit;
+ color: inherit;
+ text-align: left;
+ width: 100%;
+}
+
.comment .pointer {
cursor: pointer;
}