When viewing my website on a mobile device, the select dropdown is going off the screen. I am using the bootstrap class form-control
. Here is my code:
<select name="service" formControlName="service" class="form-control shadow-none" style="width:100%">
<option value="Select" selected>Select</option>
<option value="Sedan" selected>Sedan</option>
<option value="SUV" selected>SUV</option>
<option value="Mini" selected>Mini</option>
</select>
https://i.sstatic.net/bZuuj.png
Any assistance with this issue would be greatly appreciated...