Unverified Commit c4baba85 authored by Maximilian Krauß's avatar Maximilian Krauß Committed by GitHub

fix(syntax-highlighting): adds missing CSS imports to CodeBlock.tsx (#4890)

parent 1f88e3e2
...@@ -6,6 +6,8 @@ import toast from "react-hot-toast"; ...@@ -6,6 +6,8 @@ import toast from "react-hot-toast";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
import MermaidBlock from "./MermaidBlock"; import MermaidBlock from "./MermaidBlock";
import { BaseProps } from "./types"; import { BaseProps } from "./types";
import "highlight.js/styles/atom-one-dark.css";
import "highlight.js/styles/github.css";
// Special languages that are rendered differently. // Special languages that are rendered differently.
enum SpecialLanguage { enum SpecialLanguage {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment