Package version
No response
Node version
No response
Platform
No response
What steps will reproduce the bug?
What is the expected behavior?
All <hr> dividers have the same visual height (no rounding differences)
What do you see instead?
The <hr> divider right under the Note block is rendered 1px thicker than other dividers (in the editor for example) (e.g. looks like 5px while others are 4px).
Additional information
CSS sets hr { height: 0.25em; }. With line-height: 20px this becomes 3.75px in computed styles.
Proposed fix: make hr height a CSS variable in px (e.g. --hr-height: 4px by default) to ensure stable rendering across contexts
Package version
No response
Node version
No response
Platform
No response
What steps will reproduce the bug?
What is the expected behavior?
All
<hr>dividers have the same visual height (no rounding differences)What do you see instead?
The
<hr>divider right under the Note block is rendered1pxthicker than other dividers (in the editor for example) (e.g. looks like5pxwhile others are4px).Additional information
CSS sets
hr { height: 0.25em; }.Withline-height: 20pxthis becomes3.75pxin computed styles.Proposed fix: make
hrheight a CSS variable inpx(e.g.--hr-height: 4pxby default) to ensure stable rendering across contexts