diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2020-09-23 11:58:12 +0200 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2020-09-23 11:58:12 +0200 |
commit | 3a0517330bcfb8045210cf3922d920803d6682b2 (patch) | |
tree | 862d5544b4cb91cae46fae6e3c37c443d954dffa /$template.html | |
parent | 61f2ac4f7cbe1e8864509e430757e21371ac2ac4 (diff) |
template: Also allow <pre> for code blocks
Diffstat (limited to '$template.html')
-rw-r--r-- | $template.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/$template.html b/$template.html index 9600911..7892c2c 100644 --- a/$template.html +++ b/$template.html @@ -58,11 +58,13 @@ code { background-color: #f2e8e8; padding: 0px 4px 2px 5px; } -blockquote { +blockquote, pre { display: block; border-radius: 9px; padding: 10px; background-color: #f2e8e8; + font-family: inherit; + font-size: inherit; } #main-content { padding: 0px 50px; |