From 070cf8bfed41e0afefe8c7330c05bbbcb2efbf6b Mon Sep 17 00:00:00 2001 From: lisiur Date: Mon, 10 Jul 2023 10:02:57 +0800 Subject: [PATCH] fix: fix user input's link not displaying issue --- web/src/style.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web/src/style.css b/web/src/style.css index 4a0fb98..a4c5a42 100644 --- a/web/src/style.css +++ b/web/src/style.css @@ -34,20 +34,22 @@ html, body, #app { color: var(--assistant-msg-color); background-color: var(--assistant-msg-bg-color); } +.markdown-root.assistant-msg a { + color: var(--primary-color); +} .markdown-root.user-msg { color: var(--user-msg-color); background-color: var(--user-msg-bg-color); } +.markdown-root.user-msg a { + color: var(--base-color); +} .markdown-root p { padding: .5rem 0; } -.markdown-root a { - color: var(--primary-color); -} - .markdown-root ul { padding: .5rem 0 .5rem 1rem; list-style: inside;