From d0bde192fdf532bcc2e710355fbe0713ec853d64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rory=20O=E2=80=99Kane?= Date: Sun, 18 Oct 2020 16:12:42 -0400 Subject: [PATCH] Fix CSS bug where code blocks ended with blank lines in Firefox (#239) fixes https://github.com/Xe/site/issues/238 Disclaimer: I only tested this with the browser developer tools. I did not rebuild the site or try this CSS change on multiple pages. --- css/hack.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/hack.css b/css/hack.css index 5222899..fa32382 100644 --- a/css/hack.css +++ b/css/hack.css @@ -297,7 +297,7 @@ a:hover { } .hack pre code:after, .hack pre code:before { - content: ""; + display: none; } .hack code { font-weight: 700;