vue-search-select icon indicating copy to clipboard operation
vue-search-select copied to clipboard

How to set the dropdown list height?

Open balaram26 opened this issue 5 years ago • 1 comments

I use the dropdown inside a vuejs modal window,and the the dropdown gets cut if the list size is bigger than the window. the last few elements are missed out from the user view. i have added a screenshot for example. image

balaram26 avatar Sep 11 '20 15:09 balaram26

I had the same issue, turns out its because of min-height: 100vh that set for menu class in my code just add .menu {min-height: 0 !important} in your component style or just simply change menu class name where ever you used it

KFazelp avatar Sep 11 '21 21:09 KFazelp