Font size conflicts within gist code blocks
Closed this issue · 2 comments
xjasonlyu commented
Describe the bug
When we use gist
shortcode to display GitHub Gist codes, e.g.
{{< gist jmooring 50a7482715eac222e230d1e64dd9a89b >}}
In current version (38de0c9), it shows like this:
Some letters are bigger and some are smaller. And it applies to all desktop/mobile browsers.
Additional context
I believe this issue is similar to #406, which causes by the wildcard font-size
setting.
anatole/assets/scss/partials/_base.scss
Lines 3 to 7 in 38de0c9
xjasonlyu commented
To temporarily fix this problem, put this code into your custom.css
file:
* {
font-size: inherit;
}
body {
font-size: 1.6rem;
}
xjasonlyu commented