vue-twemoji-picker
vue-twemoji-picker copied to clipboard
Unwanted padding
How can I remove this padding
it seems a top CSS has to be -10 but when the script adjusts it it make it ether auto or zero!
Please advice
I will address this as soon as possible.
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