mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-22 20:37:06 +00:00
Added "message-boxes" styles to the typography Increased the home icon size in doc pages Changed doc component class names
34 lines
1.4 KiB
HTML
34 lines
1.4 KiB
HTML
<div class="page-layout simple fullwidth angular-material-elements">
|
|
|
|
<!-- HEADER -->
|
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row"
|
|
fxLayoutAlign.gt-xs="space-between center">
|
|
|
|
<div fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="column" fxLayoutAlign.gt-xs="center start">
|
|
<div class="black-fg" fxLayout="row" fxLayoutAlign="start center">
|
|
<mat-icon class="secondary-text s-18">home</mat-icon>
|
|
<mat-icon class="secondary-text s-16">chevron_right</mat-icon>
|
|
<span class="secondary-text">Components</span>
|
|
<mat-icon class="secondary-text s-16">chevron_right</mat-icon>
|
|
<span class="secondary-text">Angular Material Elements</span>
|
|
</div>
|
|
<div class="h2 mt-16">{{title}}</div>
|
|
</div>
|
|
|
|
<a mat-raised-button class="reference-button mat-white-bg mt-16 mt-sm-0" href="https://material.angular.io/"
|
|
target="_blank">
|
|
<mat-icon class="mr-8">link</mat-icon>
|
|
<span>Reference</span>
|
|
</a>
|
|
</div>
|
|
<!-- / HEADER -->
|
|
|
|
<!-- CONTENT -->
|
|
<div class="content p-24">
|
|
<div *ngFor="let example of examples">
|
|
<example-viewer [example]="example"></example-viewer>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|