I am trying to create a two-column row with inputs:
<div class="row first-row">
<div class="column col-6">
<div class="form-group">
<label for="usr"
>Sequence Number:</label
>
<input type="text" class="form-control sequence-number" id="usr" />
</div>
</div>
<div class="column status col-6">
<BaseDropdown
label="Status:"
:options="statusTypes"
v-model="building"
placeholder="Please select a status"
/>
</div>
</div>
https://i.sstatic.net/MUwJJ.png
My goal is to stack these columns into two rows when the screen is resized to mobile view, without changing the layout on mobile devices. I envision it to look something like this:
https://i.sstatic.net/JGNVe.png
Can anyone help me achieve this layout?