yaminncco / vue-sidebar-menu

A Vue.js Sidebar Menu Component
MIT License
654 stars 193 forks source link

Adjust delay for item hover to appear #263

Closed jadamroth closed 11 months ago

jadamroth commented 1 year ago

How do I adjust the item hover, so the tooltip appears more quickly?

yaminncco commented 1 year ago

You can override the transition duration

.v-sidebar-menu .slide-animation-enter-active,
.v-sidebar-menu .slide-animation-leave-active {
  transition: width 0.3s ease;
}