div.md-content.md-content-ost Vaguely changed #7984
-
When I started working on my thirteenth post normally, I realised that the content had inexplicably become narrower |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello @Tenax-599, As for a quick fix, and explanation, here's my take: To fix it you can add extra css and force the .md-content--post > article {
flex-grow: 1;
} |
Beta Was this translation helpful? Give feedback.
Hello @Tenax-599,
this seems like a bug, you could report it via the proper channels in the Issues:
As for a quick fix, and explanation, here's my take:
The
md-content--post
div is a flex container, and it contains both the left metadata column and the mainarticle
content.The
article
is a flex item which doesn't grow to take up the available space, instead the content inside defines the width, other posts have longer titles or images or longer paragraphs, so it grows naturally to take up the full available width. However, in this case the post has a short name, and almost no content, therefore the width doesn't …