Is it on purpose that warnings have a smaller font size? #138
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
So one can customly set these in the Sphinx config: html_theme_options = {
"light_css_variables": {
"admonition-title-font-size": "1.25rem",
"admonition-font-size": "1rem",
},
"dark_css_variables": {
"admonition-title-font-size": "1.25rem",
"admonition-font-size": "1rem",
},
} Alternatively, if you like this version better, it is simply a matter of setting the same values in |
Beta Was this translation helpful? Give feedback.
-
As noted already, these are configurable. The choice to make them smaller is a stylistic one and has been discussed before. From #104 (comment):
If you care enough to feel like you want it to be different, I imagine you'd also be fine with setting values in the configuration file. |
Beta Was this translation helpful? Give feedback.
As noted already, these are configurable. The choice to make them smaller is a stylistic one and has been discussed before.
From #104 (comment):
If you care …