Fix background for <code>

This commit is contained in:
Gabriel Arazas 2023-02-27 13:04:25 +08:00
parent 4e0a56e80a
commit fd2ac20444

View File

@ -72,6 +72,7 @@ code, pre {
} }
code { code {
background: var(--base01);
font-family: var(--mono-family); font-family: var(--mono-family);
font-size: 0.9em; font-size: 0.9em;
} }
@ -87,6 +88,8 @@ pre {
max-height: var(--code-block-size); max-height: var(--code-block-size);
padding: 0.5rem; padding: 0.5rem;
overflow: auto; overflow: auto;
code { background: unset; }
} }
mark { mark {