Fixes styling issue

This commit is contained in:
Oleg Silkin 2019-11-11 15:15:34 -05:00 committed by Sean Yesmunt
parent 53e4392feb
commit 23ec4beb7c

View file

@ -17,11 +17,16 @@
.comment__body_container {
padding: var(--spacing-small) 0;
display: inline-block;
width: 100%;
width: -moz-available;
width: -webkit-fill-available;
width: available;
}
.comment__meta {
display: flex;
flex-direction: column;
flex-direction: row;
justify-content: flex-end;
text-overflow: ellipsis;
time {
@ -36,8 +41,8 @@
.comment__author {
margin-bottom: 1rem;
text-overflow: ellipsis; // This is where the magic happens
flex: 1;
flex-basis: 400px;
flex-shrink: 1;
font-weight: 600;
}