From fdb630410ef9367236b47cc92ad488458926dfff Mon Sep 17 00:00:00 2001 From: grassblock Date: Wed, 20 Aug 2025 21:50:39 +0800 Subject: [PATCH] fix: link text color in callout --- src/styles/global.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/styles/global.css b/src/styles/global.css index 42d6e61..de11cf5 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -275,6 +275,14 @@ div.content { text-decoration: underline 1px; } + + div.callout-info div.callout-content a { + color: dodgerblue; + } + div.callout-warning div.callout-content a { + color: steelblue; + } + blockquote { border-left: 1px solid var(--accent-color); color: var(--text-color);