[frontend] Add button for hood page to dashboard

This commit is contained in:
maike 2020-09-06 12:54:02 +02:00 committed by Maike
parent 547e671a2d
commit b941ffcd9d
2 changed files with 8 additions and 0 deletions

View file

@ -18,6 +18,9 @@
<mat-icon>settings</mat-icon>
<div class="list-entry">
Your Hood - <strong>{{ hood.name }}</strong>
<a [routerLink]="['/hoods', hood.id]">
<mat-icon class="list-entry-page">open_in_browser</mat-icon>
</a>
</div>
</div>
<mat-divider></mat-divider>

View file

@ -62,3 +62,8 @@ p {
display: grid;
grid-template-columns: 30px 1fr;
}
.list-entry-page {
float: right;
color: black;
}