Akryum / floating-vue

💬 Easy tooltips, popovers, dropdown, menus... for Vue
https://floating-vue.starpad.dev/
MIT License
3.32k stars 339 forks source link

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

Open DeBass99 opened 1 year ago

DeBass99 commented 1 year ago

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

ggueyraud commented 1 year ago

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"

DeBass99 commented 1 year ago

Thank you, worked perfectly