Remove padding from code blocks that was causing weird indentation

This commit is contained in:
Maurice Parker 2019-10-07 11:05:22 -05:00
parent 590b2d5874
commit f7e235a1fb
2 changed files with 2 additions and 2 deletions

View File

@ -123,11 +123,11 @@ pre {
line-height: 20px;
border: 1px solid #777;
word-wrap: normal;
padding: 10px;
}
code, pre {
font-family: "SF Mono", Menlo, "Courier New", Courier, monospace;
font-size: 14px;
padding: 10px;
}
img, figure, video, iframe, div {
max-width: 100%;

View File

@ -123,6 +123,7 @@ pre {
overflow-y: hidden;
line-height: 20px;
border: 1px solid var(--box-color);
padding: 5px;
word-wrap: normal;
word-break: normal;
-webkit-hyphens: none;
@ -130,7 +131,6 @@ pre {
code, pre {
font-family: "SF Mono", Menlo, "Courier New", Courier, monospace;
font-size: 14px;
padding: 5px;
}
img, figure, video, iframe, div {
max-width: 100%;