Fix footnote selector

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-11 19:21:43 -07:00
parent 1969ea2645
commit 2c8bbd590a

View file

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