Is there a way to adjust the font size and width of the timepicker control in Bootstrap UI Angular?
Specifically, I am looking to make the text larger and increase the size of the Chevron (up/down buttons).
Here is the code snippet I currently have:
<div class="form-group">
<label class="control-label col-sm-3"> <span class="h3">Drop off </span></label>
<div class="control-label col-sm-3">
<timepicker name="txtDroptime" ng-model="myDroptime" ng-change="DroptimeChanged()" hour-step="hstep" minute-step="mstep" show-meridian="ismeridian"></timepicker>
</div>
</div>