mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
docs(v2): fix css snipped with missing color (#4813)
* Update markdown-features-code-blocks.mdx * fix doc lint issue
This commit is contained in:
parent
1ab8aa0af8
commit
0c105a2a79
|
|
@ -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);
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue