My custom form is displayed below:
<form novalidate class="form-group" ng-hide="tab==1">
Reviews Min: <input type="number" ng-init="revNum=0" class="form-control" min="0" step="10" ng-model="revNum" />
Min Price: <input type="number" ng-init="minNum=0" class="form-control" min="0" step="1000" ng-model="minNum" />
Max Price: <input type="number" ng-init="maxNum=0" class="form-control" min="0" step="1000" ng-model="maxNum" />
<button class="btn btn-primary" ng-click="updateNumArray(revNum, minNum, maxNum)">Filter</button>
</form>
Below is the content of my style.css
:
input {
width: 100px;
}
This is how it appears in my browser:
What modifications should I make to achieve a similar look like this: