1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

fixed code block color

This commit is contained in:
Fedor Katurov 2021-02-24 18:26:10 +07:00
parent d92e0f28c2
commit d6fafacee7

View file

@ -21,14 +21,14 @@ $margin: 1em;
} }
pre { pre {
background-color: darken($comment_bg, 2%); background-color: transparentize($blue, 0.9);
border: { border: {
left: 4px solid $red; left: 4px solid transparentize($blue, 0.9);
right: 4px solid $red; right: 4px solid transparentize($blue, 0.9);
} }
font-family: monospace; font-family: monospace;
font-size: 0.9em; font-size: 0.9em;
border-radius: $radius; border-radius: 2px;
width: 100%; width: 100%;
overflow: auto; overflow: auto;
padding: $gap; padding: $gap;
@ -36,7 +36,7 @@ $margin: 1em;
margin-bottom: $margin; margin-bottom: $margin;
code { code {
color: transparentize(white, 0.5); color: transparentize($wisegreen, 0.1);
font-family: monospace; font-family: monospace;
} }
} }