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.
This commit is contained in:
Lukas Joswiak 2022-10-12 21:21:44 -07:00 committed by GitHub
parent 0290193019
commit 3286754ceb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -269,7 +269,7 @@ main#content pre code {
padding: 0;
}
main#content section.footnotes {
main#content .footnotes {
font-size: 0.9em;
}