How to make the v-pane-content scrollable?
Opened this issue · 1 comments
GeorgeChackungal commented
How do i make the v-pane-content scroll-able so that when it expands it doesn't increase the height of the container?
ravimallya commented
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 */;
}