kevinfaveri/vue-twemoji-picker

Unwanted padding

Opened this issue · 2 comments

How can I remove this padding
image
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