LukaszWatroba/v-accordion

How to make the v-pane-content scrollable?

Opened this issue · 1 comments

How do i make the v-pane-content scroll-able so that when it expands it doesn't increase the height of the container?

How about adding max-height and overflow-y:auto; to the .vAccordion--default v-pane.is-expanded>v-pane-content>div element like below:

.vAccordion--default v-pane.is-expanded>v-pane-content>div {
    max-height: 100px;
    overflow-y: scroll /* or auto */;
}