fix: codeblock style inconsistency

- the size of codeblock is same with hightlight now
- the pre in .content will not be afftected by reamrk42 style anymore
This commit is contained in:
leafee98 2022-04-29 10:23:08 +08:00
parent 4e73d5d1eb
commit 3b58a1a279

View file

@ -393,6 +393,9 @@ body {
word-wrap: break-word; word-wrap: break-word;
} }
/* keep in style with highlighting */
.content pre { padding: 7px; }
.content pre code { .content pre code {
font-family: var(--fonts-mono); font-family: var(--fonts-mono);
@ -626,3 +629,10 @@ body {
.commenting { .commenting {
width: 85%; width: 85%;
} }
/* keep content style from being affected by remark42 style */
.content pre {
background-color: transparent;
color: var(--color-black-3)
}