.comment {
flex-grow: 1;
+ // Fix word-wrap with flex
+ min-width: 1px;
.highlighted-comment {
display: inline-block;
}
.comment-html {
- word-wrap: initial;
word-break: normal;
+ word-wrap: break-word;
text-align: justify;
/deep/ a {
}
}
}
+
+// Decrease the space of child comments on small screens
+@media screen and (max-width: 1600px) {
+ .children {
+ margin-left: -20px;
+ }
+}
+
+@media screen and (max-width: 1200px) {
+ .children {
+ margin-left: -30px;
+ }
+}
+
+@media screen and (max-width: 600px) {
+ .children {
+ margin-left: -40px;
+ }
+
+ .root-comment {
+ img { margin-right: 10px; }
+ }
+}
\ No newline at end of file