I am using react slick to make a slider, the slider card contains a drop-down menu with many options. When the dropdown is open, half of the dropdown is cropped and the full dropdown cannot be viewed.
Codepen: https://codepen.io/gtm18/pen/YzRdaML (demo with jQuery)
$(document).ready(function(){ $('.carousel').slick({ slidesToShow: 3, dots:true, centerMode: true, }); });
You can limit the height of the drop-down menu, which will add a scroll bar and you can see all the options, like this:
To see a more detailed demo, check out this code demo:
https://codepen.io/gtm18/pen/YzRdaML