Skip to content

Commit

Permalink
docs(material/slider): adjust CSS of configurable slider example (#24156
Browse files Browse the repository at this point in the history
)

* docs(material/slider): adjust CSS of configurable slider example

modify CSS of configurable slider example to adjust according to device

* docs(material/slider): adjust CSS of configurable slider example

modify CSS of configurable slider example to adjust according to device
  • Loading branch information
yousafnawaz authored Feb 24, 2022
1 parent 426afa0 commit 8a12da7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,22 @@

.example-section {
display: flex;
flex-wrap: wrap;
align-content: center;
align-items: center;
height: 60px;
}

.example-margin {
margin: 8px;
}
.example-width {
max-width: 180px;
width: 100%;
}

.mat-slider-horizontal {
width: 300px;
max-width: 300px;
width: 100%;
}

.mat-slider-vertical {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
<h2 class="example-h2">Slider configuration</h2>

<section class="example-section">
<mat-form-field class="example-margin" appearance="fill">
<mat-form-field class="example-margin example-width" appearance="fill">
<mat-label>Value</mat-label>
<input matInput type="number" [(ngModel)]="value">
</mat-form-field>
<mat-form-field class="example-margin" appearance="fill">
<mat-form-field class="example-margin example-width" appearance="fill">
<mat-label>Min value</mat-label>
<input matInput type="number" [(ngModel)]="min">
</mat-form-field>
<mat-form-field class="example-margin" appearance="fill">
<mat-form-field class="example-margin example-width" appearance="fill">
<mat-label>Max value</mat-label>
<input matInput type="number" [(ngModel)]="max">
</mat-form-field>
<mat-form-field class="example-margin" appearance="fill">
<mat-form-field class="example-margin example-width" appearance="fill">
<mat-label>Step size</mat-label>
<input matInput type="number" [(ngModel)]="step">
</mat-form-field>
Expand All @@ -26,7 +26,7 @@ <h2 class="example-h2">Slider configuration</h2>
<mat-checkbox class="example-margin" [(ngModel)]="autoTicks" *ngIf="showTicks">
Auto ticks
</mat-checkbox>
<mat-form-field class="example-margin" appearance="fill" *ngIf="showTicks && !autoTicks">
<mat-form-field class="example-margin example-width" appearance="fill" *ngIf="showTicks && !autoTicks">
<mat-label>Tick interval</mat-label>
<input matInput type="number" [(ngModel)]="tickInterval">
</mat-form-field>
Expand Down

0 comments on commit 8a12da7

Please sign in to comment.