From b8cdf95eb2b05b9990a318f353adccab9d9df167 Mon Sep 17 00:00:00 2001 From: adam jones Date: Sat, 13 Sep 2025 10:33:06 -0700 Subject: [PATCH] Fix awkward wrapping in post metadata (#1790) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous shared styling applied flex layout to both `.post-meta` and `.breadcrumbs`, causing awkward line breaks in post metadata where separators and reading time would appear at the start of new lines. This change keeps the shared color and font-size styling, but only applies flex layout to `.breadcrumbs`. Post metadata (author, date, reading time) uses the default block flow which handles inline content with separators more naturally. Fixes #1789 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- assets/css/common/post-single.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/css/common/post-single.css b/assets/css/common/post-single.css index b9bb7d81..6d6fb6bc 100644 --- a/assets/css/common/post-single.css +++ b/assets/css/common/post-single.css @@ -17,6 +17,9 @@ .breadcrumbs { color: var(--secondary); font-size: 14px; +} + +.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center;