Skip to content

Commit b8cdf95

Browse files
domdomeggclaude
andauthored
Fix awkward wrapping in post metadata (#1790)
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 <[email protected]>
1 parent 8ea01a6 commit b8cdf95

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

assets/css/common/post-single.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
.breadcrumbs {
1818
color: var(--secondary);
1919
font-size: 14px;
20+
}
21+
22+
.breadcrumbs {
2023
display: flex;
2124
flex-wrap: wrap;
2225
align-items: center;

0 commit comments

Comments
 (0)