Skip to content

Commit

Permalink
Fix responsive behavior for search form fields (#8)
Browse files Browse the repository at this point in the history
Resolves #7
  • Loading branch information
david-poindexter authored Jul 4, 2020
1 parent ff31927 commit 415e998
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/views/dashboard.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

<div ng-form="formDashboard" id="formPoints" class="form" ng-show="!loading">

<div class="form-row">
<div class="col">
<div class="form-row mb-3 mb-lg-0">
<div class="col-12 col-lg-auto">
<div class="form-group">
<div class="input-group">
<input name="period_start" id="period_start" type="text" placeholder="mm/dd/yyyy" class="form-control" date-formatter uib-datepicker-popup="M!/d!/yyyy" ng-model="period_start" is-open="periodStartDateTimePicker.isOpen" datepicker-options="dateOptions" close-text="Close" />
Expand All @@ -14,7 +14,7 @@
</div>
</div>
</div>
<div class="col">
<div class="col-12 col-lg-auto">
<div class="form-group">
<div class="input-group">
<input name="period_end" id="period_end" type="text" placeholder="mm/dd/yyyy" class="form-control" date-formatter uib-datepicker-popup="M!/d!/yyyy" ng-model="period_end" is-open="periodEndDateTimePicker.isOpen" datepicker-options="dateOptions" close-text="Close" />
Expand All @@ -32,7 +32,7 @@
</div>
</div>

<div class="col-2">
<div class="col-12 col-lg-auto">
<a href="#" class="btn btn-block btn-primary" ng-click="getUserActivity()">Full Search</a>
</div>
</div>
Expand Down Expand Up @@ -110,4 +110,4 @@

</div>

</div>
</div>

0 comments on commit 415e998

Please sign in to comment.