[Bug] Miscalculation of html.style.top
I found a little miscalculation regarding your height setting of the pause banner.
The original calculation is
calc(50vh - 100px)
with a image height of 100px
In version 13.001 you calculate the top like this:
calc(50vh - ${100 + 0.5*dimensionY}px)
which would calculate, with a 100px image height, to 50vh - 150px, which is 50px higher than original. (This now also translates to the new version 13.002)
I found this while currently updating my fork to V13 and I wanted to share it with you
My solution currently is this:
calc(50vh - ${100 + 0.5 * (imgHeight - 100)}px)