Skip to content

Commit c243353

Browse files
Fix markdown prose strong colour settings
1 parent 42acd42 commit c243353

File tree

1 file changed

+1
-1
lines changed
  • ui/dashboard/src/components/dashboards/Text

1 file changed

+1
-1
lines changed

ui/dashboard/src/components/dashboards/Text/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const Markdown = ({ value }) => {
4747
const isLong = value.split("\n").length > 3;
4848
const panelClasses = isLong ? getLongPanelClasses() : getShortPanelClasses();
4949
const proseHeadings =
50-
"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";
50+
"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";
5151
const markdown = (
5252
<ReactMarkdown
5353
rehypePlugins={[[rehypeExternalLinks, { target: "_blank" }]]}

0 commit comments

Comments
 (0)