Footnote numbers are oversized

Referring to the numbers in the footnotes below[1][2], not the superscript references in the body.

Not sure if this is upstream Discourse issue or how much our theme is customised.


  1. The list numbers to the left are normal size and larger than the footnote text, which looks weird. They should be the same size. ↩︎

  2. The smaller size for footnotes appears to be applied only to paragraph elements in discourse/theme_43.scss:

    .footnote-item p {
        font-size: smaller;
    }
    

    This means other elements like code blocks are normal size and look out of place in footnotes.

    I’m not familiar enough with the code to make a proper recommendation, but I’d just change the selector in the above rule to .footnote-item. ↩︎