Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/LukasJoswiak/etch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Joswiak <lukas@lukasjoswiak.com>2022-10-13 07:21:44 +0300
committerGitHub <noreply@github.com>2022-10-13 07:21:44 +0300
commit3286754ceb4e01b4995551f06ffd0a7c43000fe6 (patch)
treef219bc1650d5ac9d1e4c8ca03eda88914dae6ed8
parent02901930194cf3fc1382c088158654283b795e41 (diff)
Fix footnote selector (#48)HEADmaster
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.
-rw-r--r--assets/css/main.css2
1 files changed, 1 insertions, 1 deletions
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;
}