css: fix overlong parent/child preview boxes on post show page.

Bug: if a post had a large number of child posts, the child post preview
box would expand beyond the width of the screen.

Setting `min-width: 0` makes the flexbox column shrink instead of
expand.
This commit is contained in:
evazion
2019-11-05 20:58:07 -06:00
parent e031fb0400
commit 19549e2c12

View File

@@ -43,6 +43,7 @@ footer#page-footer {
#content {
flex: 1;
padding-left: 1em;
min-width: 0;
}
@media (max-width: 660px) {