From 0c105a2a79aa4deac1913f4dd3432005385edde3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lorber?= Date: Tue, 18 May 2021 18:40:15 +0200 Subject: [PATCH] docs(v2): fix css snipped with missing color (#4813) * Update markdown-features-code-blocks.mdx * fix doc lint issue --- .../guides/markdown-features/markdown-features-code-blocks.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/docs/guides/markdown-features/markdown-features-code-blocks.mdx b/website/docs/guides/markdown-features/markdown-features-code-blocks.mdx index d83c4de3a1..5a25cad2e4 100644 --- a/website/docs/guides/markdown-features/markdown-features-code-blocks.mdx +++ b/website/docs/guides/markdown-features/markdown-features-code-blocks.mdx @@ -137,7 +137,8 @@ To accomplish this, Docusaurus adds the `docusaurus-highlight-code-line` class t /* If you have a different syntax highlighting theme for dark mode. */ html[data-theme='dark'] .docusaurus-highlight-code-line { - background-color: ; /* Color which works with dark mode syntax highlighting theme */ + /* Color which works with dark mode syntax highlighting theme */ + background-color: rgb(100, 100, 100); } ```