Skip to content

Commit

Permalink
fix: fix user input's link not displaying issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lisiur committed Jul 10, 2023
1 parent dfdb43b commit 070cf8b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions web/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 070cf8b

Please sign in to comment.