It looks like the new padding is only applied to .hljs
elements, which means that simple code blocks (with no highlighting) don’t get it:
hello
console.log("test")
This also causes post heights to jump on initial load, because the highlighting (and therefore the .hljs
class) is applied asynchronously.
Can we fix it up so that the padding change applies to codeblocks, even without the .hljs
class?