Skip to content

Commit

Permalink
samples(tooltip): fix sliders position
Browse files Browse the repository at this point in the history
  • Loading branch information
Tacho committed Sep 28, 2018
1 parent 2744ec6 commit aff437d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/app/tooltip/tooltip-simple/tooltip-simple.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
</article>
<article class="sample-column">
<div>
<div class="switchContainer">
<div class="bottomMargin">
<igx-switch [(ngModel)]="target.tooltipDisabled">Disable tooltip</igx-switch>
</div>
<div>
<igx-slider minValue="0" maxValue="3000" [step]="100" [(ngModel)]="target.showDelay"></igx-slider>
<div class="bottomMargin">
<span>Show Delay: {{target.showDelay}} ms</span>
<igx-slider minValue="0" maxValue="3000" [step]="100" [(ngModel)]="target.showDelay"></igx-slider>
</div>
<div>
<igx-slider minValue="0" maxValue="3000" [step]="100" [(ngModel)]="target.hideDelay"></igx-slider>
<span>Hide Delay: {{target.hideDelay}} ms</span>
<igx-slider minValue="0" maxValue="3000" [step]="100" [(ngModel)]="target.hideDelay"></igx-slider>
</div>
</div>
</article>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
display: inline-block;
}

.switchContainer {
.bottomMargin {
margin-bottom: 50px;
}

0 comments on commit aff437d

Please sign in to comment.