Skip to content

Commit

Permalink
Ionic grid system fix
Browse files Browse the repository at this point in the history
Ionic grid system needs "col" class too when you use "col-XY".
  • Loading branch information
oskarnrk committed May 31, 2016
1 parent 8db026e commit 8046a3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ionic-datepicker-modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1 class="title">{{selctedDateEpoch | date : mainObj.dateFormat}}</h1>
</div>
<div class="col col-80 text-center">
<div class="row select_section">
<div class="col-50 padding_right_5px">
<div class="col col-50 padding_right_5px">
<label class="item item-input item-select month_select">
<span class="input-label">&nbsp;</span>
<select ng-model="currentMonth" ng-change="monthChanged(currentMonth)">
Expand All @@ -23,7 +23,7 @@ <h1 class="title">{{selctedDateEpoch | date : mainObj.dateFormat}}</h1>
</select>
</label>
</div>
<div class="col-50 padding_left_5px">
<div class="col col-50 padding_left_5px">
<label class="item item-input item-select year_select">
<span class="input-label">&nbsp;</span>
<select ng-model="currentYear" ng-change="yearChanged(currentYear)" ng-options="year for year in yearsList"></select>
Expand Down

0 comments on commit 8046a3b

Please sign in to comment.