Take a look at this image for the mobile viewHello, I am looking to expand the width of the date range selector text box.Click here to see the visual representation
Here is the code snippet:
<div class="row">
<div class="col-xs-12 col-md-6">
<label> Date Range</label><br />
<input type="text" name="daterange" data-GetData="week" data-daterangepickerid="1" id="daterangepicker" class="date-range-picker" value="01/05/2017 - 01/06/2017" />
</div>
<div class="col-xs-12 col-md-6">
<label>Id </label>
@Html.TextBoxFor(model => model.NRIC, new { @class = "form-control", id = "NRIC" })
</div>
</div>
I would like the date range text box to have the same width as the regular text box. How can I achieve this?