[scripts/markdown2htmldoc] fix text color in the code tags

This fix is speifically made for running the theme inside vscode via
`markdown.styles`.  Otherwise the theme behaves just fine.
This commit is contained in:
Dmytro Meleshko 2021-06-17 00:36:13 +03:00
parent bd09640472
commit 31c148aad6
2 changed files with 2 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -318,6 +318,7 @@ pre {
// Inline code snippets.
code {
padding: 0.2em 0.3em;
color: inherit;
background-color: rgba(colorscheme.$base-03, 0.2);
border-radius: $border-radius;
}