I'm currently working with Bootstrap 4.3.1 and I have a custom-select that I need to adjust the size of to match form-control-lg in height.
When I use
<select class="custom-select mr-sm-2" id="inputAircraftSupervising" name='inputAircraftSupervising'></select>
, it automatically fills the parent div's width with a default height, which is what I want.
https://i.sstatic.net/2fiED.png
However, when I change it to
<select class="custom-select-lg mr-sm-2" id="inputAircraftSupervising" name='inputAircraftSupervising'></select>
, the height increases but the width shrinks back to the default form-control width.
https://i.sstatic.net/Tjdpy.png
Is there a way for me to keep the larger height while still maintaining the full width of the page?