Skip to content

Commit

Permalink
fix(timepicker): remove unnecessary space when showMeridian is false (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
s00pa authored and valorkin committed Mar 1, 2018
1 parent 4bf9138 commit e7b96cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/timepicker/timepicker.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</a>
</td>
<!-- space between -->
<td>&nbsp;&nbsp;&nbsp;</td>
<td *ngIf="showMeridian">&nbsp;&nbsp;&nbsp;</td>
<!-- meridian placeholder-->
<td *ngIf="showMeridian"></td>
</tr>
Expand Down Expand Up @@ -74,7 +74,7 @@
(change)="updateSeconds($event.target.value)">
</td>
<!-- space between -->
<td>&nbsp;&nbsp;&nbsp;</td>
<td *ngIf="showMeridian">&nbsp;&nbsp;&nbsp;</td>
<!-- meridian -->
<td *ngIf="showMeridian">
<button type="button" class="btn btn-default text-center"
Expand Down Expand Up @@ -112,7 +112,7 @@
</a>
</td>
<!-- space between -->
<td>&nbsp;&nbsp;&nbsp;</td>
<td *ngIf="showMeridian">&nbsp;&nbsp;&nbsp;</td>
<!-- meridian placeholder-->
<td *ngIf="showMeridian"></td>
</tr>
Expand Down

0 comments on commit e7b96cd

Please sign in to comment.