I need help with a Bootstrap 4 form that I want to adjust to fit the viewport of mobile users.
Currently, mobile users see this:
https://i.sstatic.net/JjRa8.png
The form inputs do not fill the width of the screen, and I want them to take up the full width.
In the head, I have set the viewport like this:
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
I have also tried this:
@media screen and (max-width: 360px) {
form-row col-xs-6 {
width: 100% !important;
}
}
However, it has not worked. Any assistance would be greatly appreciated!