I am using vuejs datepicker from this repo
<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-md-6">
<label for="">From:</label>
<datepicker v-model="period.from" :format="period.format" :clear-button="true"
@selected="fetchData"></datepicker>
</div>
<div class="col-md-6">
<label for="">To:</label>
<datepicker v-model="period.to" :format="period.format" :clear-button="true"
@selected="fetchData"></datepicker>
</div>
</div>
</div>
</div>
Now the question is I want to override some styles for the datepickerlike make it small in width and height.

Any idea how I can do that ? I tried to change the width of dropdown but that does not affect the datepicker itself!