From 3286754ceb4e01b4995551f06ffd0a7c43000fe6 Mon Sep 17 00:00:00 2001 From: Lukas Joswiak Date: Wed, 12 Oct 2022 21:21:44 -0700 Subject: [PATCH] Fix footnote selector (#48) It appears a recent version of hugo changed the HTML generated for footnotes. They used to be inside a `section` tag with the `footnotes` class. They are now in a `div` with the `footnotes` class. --- assets/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/css/main.css b/assets/css/main.css index fd18730..4c2f2ea 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -269,7 +269,7 @@ main#content pre code { padding: 0; } -main#content section.footnotes { +main#content .footnotes { font-size: 0.9em; }