fix: notes preview text wrapping and right margin

Add word-break/overflow-wrap to .detail-body so long text wraps
properly, and add right margin inside the preview card for balanced
spacing.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-03 14:27:49 +00:00
parent c42fe9dc13
commit f88c6e5fd4
2 changed files with 4 additions and 1 deletions

View File

@@ -736,6 +736,9 @@ a:hover { color: var(--accent-hover); }
.detail-body {
line-height: 1.75;
color: var(--text);
overflow-wrap: break-word;
word-break: break-word;
min-width: 0;
}
.detail-body p { margin-bottom: 1em; }