Unwanted padding
Opened this issue · 2 comments
beshoo commented
kevinfaveri commented
I will address this as soon as possible.
beshoo commented
In the vanilla version, I fixed that by adding -10 to this function
function c(e) {
var t = e.getBoundingClientRect();
return {
width: t.width,
height: t.height,
top: t.top -10,
right: t.right,
bottom: t.bottom,
left: t.left,
x: t.left,
y: t.top
}
But I can not locate this function on the GitHub version!
@kevinfaguiar