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

fixed markdown and code colors

This commit is contained in:
Fedor Katurov 2022-08-13 21:35:54 +07:00
parent 53dc60bad5
commit ce7737b3cd
2 changed files with 3 additions and 3 deletions

View file

@ -45,7 +45,7 @@ $content_bg_light: lighten($brown, 2%);
$content_bg_lighter: lighten($brown, 4%);
$content_bg_lightest: lighten($brown, 6%);
$content_bg_success: transparentize($wisegreen, 0.5);
$content_bg_success: transparentize($wisegreen, 0.7);
$content_bg_info: transparentize($blue, 0.5);
$content_bg_danger: transparentize($red, 0.5);
$content_bg_backdrop: transparentize($content_bg, 0.2);

View file

@ -23,7 +23,7 @@ $margin: 1em;
}
pre {
background-color: $content_bg_lighter;
background-color: $content_bg_info;
font-family: monospace;
font-size: 0.8em;
border-radius: 2px;
@ -34,7 +34,7 @@ $margin: 1em;
margin-bottom: $margin;
code {
color: $content_bg_info;
color: $gray_50;
font-family: monospace;
white-space: pre-wrap;
}