From ba8e186cb5b9c3588eae95cb395c476fad1ac421 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sun, 6 Aug 2023 15:56:38 +0100 Subject: [PATCH] style: don't trim padding for formatted pre code --- src/ts/app.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ts/app.ts b/src/ts/app.ts index 84ca253..7494145 100644 --- a/src/ts/app.ts +++ b/src/ts/app.ts @@ -2,5 +2,4 @@ (() => { hljs.highlightAll(); - document.querySelectorAll("pre code").forEach((e: HTMLElement) => e.style.paddingTop = "0"); })();