From 13ec13a45d6894da52b1d77b59da9b52ae37ddab Mon Sep 17 00:00:00 2001 From: Matt Johnson-Pint Date: Tue, 11 Feb 2025 11:43:51 -0800 Subject: [PATCH] fix inline code styling --- style.css | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 00000000..dace51ab --- /dev/null +++ b/style.css @@ -0,0 +1,9 @@ +/* default code padding is 2px 8px, which is too wide */ +code { + padding: 2px 4px !important; +} + +/* anchors around code blocks don't need additional decoration */ +a code { + text-decoration: none !important; +}