We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--base-size-
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In version 5.5.0, github-markdown.css uses --base-size-8 and --base-size-16 vars for .markdown-alert and some other elements.
5.5.0
github-markdown.css
--base-size-8
--base-size-16
.markdown-alert
However, these are not declared so they defaut to 0, removing the padding from alerts.
0
github-markdown-light.css and github-markdown-dark.css don't use this vars, they use 8px and 16px instead, and alerts render properly.
github-markdown-light.css
github-markdown-dark.css
8px
16px
The text was updated successfully, but these errors were encountered:
For anybody bothered by this issue, the workaround is to add the following lines:
.markdown-body { --base-size-8: 8px; --base-size-16: 16px; }
Sorry, something went wrong.
#112 🤞
This issue should be fixed by v5.6.0.
No branches or pull requests
In version
5.5.0
,github-markdown.css
uses--base-size-8
and--base-size-16
vars for.markdown-alert
and some other elements.However, these are not declared so they defaut to
0
, removing the padding from alerts.github-markdown-light.css
andgithub-markdown-dark.css
don't use this vars, they use8px
and16px
instead, and alerts render properly.The text was updated successfully, but these errors were encountered: