mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-15 21:05:13 +00:00
20 lines
704 B
HTML
Executable File
20 lines
704 B
HTML
Executable File
<mat-form-field>
|
|
<mat-select placeholder="Horizontal position" [(value)]="horizontalPosition">
|
|
<mat-option value="start">Start</mat-option>
|
|
<mat-option value="center">Center</mat-option>
|
|
<mat-option value="end">End</mat-option>
|
|
<mat-option value="left">Left</mat-option>
|
|
<mat-option value="right">Right</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
<mat-form-field>
|
|
<mat-select placeholder="Vertical position" [(value)]="verticalPosition">
|
|
<mat-option value="top">Top</mat-option>
|
|
<mat-option value="bottom">Bottom</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
|
|
<button mat-button (click)="openSnackBar()" aria-label="Show an example snack-bar">
|
|
Pool party!
|
|
</button>
|