docs(v2): fix css snipped with missing color (#4813)

* Update markdown-features-code-blocks.mdx

* fix doc lint issue
This commit is contained in:
Sébastien Lorber 2021-05-18 18:40:15 +02:00 committed by GitHub
parent 1ab8aa0af8
commit 0c105a2a79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}
```