Fix comments with long usernames breaking comment section

This commit is contained in:
James Taylor 2018-08-24 14:48:02 -07:00
parent 3b8529ca11
commit fc001e7427
4 changed files with 11 additions and 3 deletions

View File

@ -6,9 +6,10 @@
.comment{
display:grid;
grid-template-columns: 0fr 0fr 1fr;
grid-template-columns: auto auto 100px 1fr;
grid-template-rows: 0fr 0fr 0fr 0fr;
background-color: #dadada;
justify-content: start;
}
.comment .author-avatar{
@ -25,10 +26,11 @@
grid-row: 1;
margin-right:15px;
white-space: nowrap;
overflow:hidden;
}
.comment .text{
grid-column: 2 / span 2;
grid-column: 2 / span 3;
grid-row: 2;
white-space: pre-wrap;
min-width: 0;

View File

@ -198,7 +198,7 @@ address{
padding-left:2px;
padding-right:2px;
}
.full-item address{
.full-item>address{
grid-column: 1;
grid-row: 4;
justify-self: start;

View File

@ -24,6 +24,9 @@
.comments{
grid-column:2;
}
.comment{
width:640px;
}
#left .page-button{
grid-column:2;
}

View File

@ -44,6 +44,9 @@
grid-row: 6;
margin-top:10px;
}
.comment{
width:640px;
}
.more-comments{
grid-column: 1 / span 2;
}