Replace source block's margin with padding

This should help reduce the amount of overlap there is between the source code
and the scroll bar that the browser shows if a source block isn't wide enough.
This commit is contained in:
Tom Willemse 2023-12-07 21:44:13 -08:00
parent 334b8b6a05
commit 2a68a3850c

View file

@ -2,6 +2,8 @@
pre.src { pre.src {
overflow: auto; overflow: auto;
margin: 0;
padding: 1rem;
} }
.content-wrapper { .content-wrapper {