Is there a way to adjust the height or increase padding of the option element within a standard select box using Bootstrap 5? More information can be found at: https://getbootstrap.com/docs/5.0/forms/select/
Could you provide an example code to demonstrate how this can be achieved?
<select class="form-select" aria-label="Default select example">
<option selected>Open this select menu</option>
<option value="1">One</option> <!-- class="h-25 pt-3 pb-3" does not work -->
<option value="2">Two</option>
<option value="3">Three</option>
</select>
Any insights or solutions would be greatly appreciated. Thank you!