I am facing an issue while integrating ngTimepicker into my Angular project. It is functioning properly, but I am unable to inline the ngTimepicker inputs with the form input. Check out the plunker here
I would like this section of HTML to be displayed in a single line.
index.html
<form>
<input type="text " required="true" ng-model="ctrl.taskObj.condition">
<ng-timepicker ng-model="ctrl.taskObj.timeStart" step="30" theme="green"></ng-timepicker>
<ng-timepicker ng-model="ctrl.taskObj.timeEnd" step="30" theme="green"></ng-timepicker>
<button type="button" class="btn btn-primary" ng-click="ctrl.addTask()">Add</button>
</form>