Add icons to buttons in orderlist
This commit is contained in:
parent
efa3b11634
commit
d11bc8667d
2 changed files with 11 additions and 1 deletions
|
@ -11,6 +11,10 @@
|
||||||
background: lightgray;
|
background: lightgray;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon{
|
||||||
|
font-family: 'Material Icons';
|
||||||
|
}
|
||||||
|
|
||||||
.orderheader {
|
.orderheader {
|
||||||
background-color: lightgrey !important;
|
background-color: lightgrey !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,16 @@
|
||||||
<app-header></app-header>
|
<app-header></app-header>
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<h3 class="text">{{(ownerUpdate | async)!.name}}</h3>
|
<h3 class="text">{{(ownerUpdate | async)!.name}}</h3>
|
||||||
<p class="text">Session valid until: {{(ownerUpdate | async)!.expiration | date}}</p>
|
<p class="text">Session valid until: {{(ownerUpdate | async)!.expiration | date}}
|
||||||
|
<button mat-icon-button color="primary">
|
||||||
|
<mat-icon class="icon">queue</mat-icon>
|
||||||
|
</button>
|
||||||
|
</p>
|
||||||
<table >
|
<table >
|
||||||
<tr>
|
<tr>
|
||||||
<td width="45%">
|
<td width="45%">
|
||||||
<button class="text" mat-raised-button [routerLink]="['/shop']" color="primary">
|
<button class="text" mat-raised-button [routerLink]="['/shop']" color="primary">
|
||||||
|
<mat-icon class="icon">home</mat-icon>
|
||||||
Back to Shop
|
Back to Shop
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
@ -14,6 +19,7 @@
|
||||||
<td width="45%">
|
<td width="45%">
|
||||||
<button mat-raised-button color="primary"
|
<button mat-raised-button color="primary"
|
||||||
class="text" (click)="openDbExport()">
|
class="text" (click)="openDbExport()">
|
||||||
|
<mat-icon class="icon">get_app</mat-icon>
|
||||||
Export Orders
|
Export Orders
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in a new issue