From da7aa2c115e22a608550ea8c55eab477e55b28f6 Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 13 Oct 2025 14:40:30 +0200 Subject: [PATCH] fix: add padding to prevent quote text from overlapping timestamp --- src/styles/layout/highlights.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/layout/highlights.css b/src/styles/layout/highlights.css index 5e887ba2..4c653788 100644 --- a/src/styles/layout/highlights.css +++ b/src/styles/layout/highlights.css @@ -134,7 +134,7 @@ .highlight-item.level-friends .highlight-quote-icon { color: var(--highlight-color-friends, #f97316); } .highlight-item.level-nostrverse .highlight-quote-icon { color: var(--highlight-color-nostrverse, #9333ea); } -.highlight-content { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; } +.highlight-content { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; padding-right: 3.5rem; } .highlight-text { margin: 0; padding: 0; font-style: italic; color: #ddd; line-height: 1.6; border-left: none; font-size: 0.95rem; } .highlight-comment { margin-top: 0.5rem; padding: 0.75rem; background: rgba(100, 108, 255, 0.1); border-left: 3px solid #646cff; border-radius: 4px; font-size: 0.875rem; color: #ddd; line-height: 1.5; }