[Regression] Extraneous vertical scrollbar since version 0.75.0
See original GitHub issueMinor Regressions
1. Extraneous scrollbar
- Up to version 0.74.0, mathlive wasn’t showing an inner scrollbar (not needed).
- Starting in version 0.75.0 (and 0.76.0), mathlive shows extraneous inner scrollbar. This happens on the official demo as well https://cortexjs.io/mathlive/:
2. Vertical alignment
- Prior to version 0.75.0, using
display: inline-block
on the math-field was working well and the field was centered vertically automatically next to other text: - Starting in version 0.75.0, the math-field jumps high up when placed next to other text:
Workaround
Both issues can be worked around by adding CSS:
math-field {
overflow: unset;
}
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:6 (5 by maintainers)
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Good catch. Thanks for reporting this. I have published
mathlive@0.76.1
which includes a fix.@anisabboud that can work in some cases, but note that you’re aligning on the middle, not the baseline, so for example
\frac{\frac12}3
will appear mis-aligned.