Is there a way to create a scrollbar within a bootstrap 4 dropdown selection? I am facing an issue where the dropdown does not fully load when there are too many files. My solution is to display only 5 files when the dropdown is clicked and include a scrollbar for navigation.
https://i.sstatic.net/FVrBb.jpg
HTML
<div class="pd-ltr-20 customscroll customscroll-10-p height-auto xs-pd-20-10">
<div class="min-height-200px">
<div class="mb-30">
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<small class="form-text text-muted">Select ES Value</small>
<div class="custom-file">
<select class="font-14 selectpicker form-control" data-width="100%">
<option value="">- ES VALUE -</option>
</select>
</div>
</div>
</div>
</div>
</div>
</div>
</div>