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:
@@ -43,6 +43,7 @@ footer#page-footer {
|
|||||||
#content {
|
#content {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 660px) {
|
@media (max-width: 660px) {
|
||||||
|
|||||||
Reference in New Issue
Block a user