Prevent comment content from breaking the layout on mobile

This commit is contained in:
Branko Tomic 2021-10-01 16:13:45 +02:00 committed by infinite-persistence
parent 256ed6a106
commit a04c69f787

View file

@ -200,6 +200,9 @@ $thumbnailWidthSmall: 1rem;
}
.comment__body-container {
display: flex;
flex-direction: column;
min-width: 0;
flex: 1;
margin-left: var(--spacing-xs);