Skip to content

Commit

Permalink
Fix markdown prose strong colour settings
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelBurgess committed Jan 29, 2025
1 parent 42acd42 commit c243353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/dashboard/src/components/dashboards/Text/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const Markdown = ({ value }) => {
const isLong = value.split("\n").length > 3;
const panelClasses = isLong ? getLongPanelClasses() : getShortPanelClasses();
const proseHeadings =
"prose-h1:text-3xl prose-h2:text-2xl prose-h3:text-xl prose-h3:mt-1 p-4 text-foreground prose-h1:text-foreground prose-h2:text-foreground prose-h4:text-foreground prose-h4:text-foreground prose-h5:text-foreground prose-h6:text-foreground";
"prose-h1:text-3xl prose-h2:text-2xl prose-h3:text-xl prose-h3:mt-1 p-4 text-foreground prose-h1:text-foreground prose-h2:text-foreground prose-h4:text-foreground prose-h4:text-foreground prose-h5:text-foreground prose-h6:text-foreground prose-strong:text-foreground";
const markdown = (
<ReactMarkdown
rehypePlugins={[[rehypeExternalLinks, { target: "_blank" }]]}
Expand Down

0 comments on commit c243353

Please sign in to comment.