Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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);
}