Fix: Monospace line spacing issue.

Fixes #253.

i removed `overflow: auto` because it causes the codeblock to vertical scroll when the line height is decreased
This commit is contained in:
rudyon 2023-05-12 15:59:44 +03:00 committed by GitHub
parent ff1bdf9526
commit e6f5271181
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -108,7 +108,6 @@ pre, code, kbd, samp {
pre { pre {
margin-top: 0; margin-top: 0;
margin-bottom: 1rem; margin-bottom: 1rem;
overflow: auto;
} }
figure { figure {
margin: 0 0 1rem; margin: 0 0 1rem;
@ -5363,3 +5362,7 @@ div[id^="reply-edit-"] li > p:first-child {
.volunteer_janitor_result_bad_3 { .volunteer_janitor_result_bad_3 {
background-color: hsl(0, 100%, 80%); background-color: hsl(0, 100%, 80%);
} }
pre {
line-height: .5rem;
}