Skip to content

Commit

Permalink
styled links added
Browse files Browse the repository at this point in the history
  • Loading branch information
yash-kh committed Oct 5, 2024
1 parent ee35c84 commit b939e3a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ const HTMLMessage = memo(
<div
data-html-email-message
dangerouslySetInnerHTML={{ __html }}
className="prose-invert prose-a:decoration-blue-9 w-fit min-w-min overflow-ellipsis text-pretty [overflow-wrap:anywhere]"
className="convo-html-msg prose-invert prose-a:decoration-blue-9 w-fit min-w-min overflow-ellipsis text-pretty [overflow-wrap:anywhere]"
/>
);
},
Expand Down
10 changes: 10 additions & 0 deletions apps/web/src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,13 @@
div[data-html-email-message] *[style*='color: transparent'] {
@apply hidden;
}

.convo-html-msg a {
color: var(--bronze7);
text-decoration: underline;
font-weight: bold;
}

.convo-html-msg a:hover {
color: var(--bronze4);
}

0 comments on commit b939e3a

Please sign in to comment.