floating-vue icon indicating copy to clipboard operation
floating-vue copied to clipboard

Is there a way to hide the arrow in the dropdown?

Open DeBass99 opened this issue 2 years ago • 3 comments

I have tried using CSS to hide the arrow from showing but I cannot seem to get it done

DeBass99 avatar Dec 19 '22 11:12 DeBass99

Yes, you must override .v-popper__arrow-container like this:

.v-popper__arrow-container {
  display: none
}

Also to remove the padding you'll need to set :distance="0"

ggueyraud avatar Dec 21 '22 12:12 ggueyraud

Thank you, worked perfectly

DeBass99 avatar Dec 21 '22 15:12 DeBass99