From a29808c59b26dad963b42e0842df9959eb7aa7c1 Mon Sep 17 00:00:00 2001 From: Andy Waite Date: Mon, 23 Sep 2024 15:10:43 -0400 Subject: [PATCH] Fix body line height for code (#2598) --- jekyll/_sass/custom/_custom.scss | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 jekyll/_sass/custom/_custom.scss diff --git a/jekyll/_sass/custom/_custom.scss b/jekyll/_sass/custom/_custom.scss new file mode 100644 index 000000000..5000232f0 --- /dev/null +++ b/jekyll/_sass/custom/_custom.scss @@ -0,0 +1,3 @@ +pre.highlight { + line-height: 1; +}