Use standard add button for transactions from dashboard
This commit is contained in:
parent
7177f3bfe3
commit
b9f82ba849
2 changed files with 4 additions and 2 deletions
|
@ -38,7 +38,7 @@
|
|||
.dashboard-primary div {
|
||||
bottom: 0.5em;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
justify-content: flex-end;
|
||||
left: 0.5em;
|
||||
right: 0.5em;
|
||||
position: absolute;
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
<span [ngClass]="{'income': balance > 0, 'expense': balance < 0}" >{{ balance | currency }}</span>
|
||||
</h2>
|
||||
<div class="transaction-navigation">
|
||||
<a mat-button routerLink="/transactions/new">Add Transaction</a>
|
||||
<a mat-button routerLink="/transactions">View Transactions</a>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -28,3 +27,6 @@
|
|||
<app-category-list [categories]="categories" [categoryBalances]="categoryBalances"></app-category-list>
|
||||
</div>
|
||||
</div>
|
||||
<a mat-fab routerLink="/transactions/new">
|
||||
<mat-icon aria-label="Add">add</mat-icon>
|
||||
</a>
|
Loading…
Reference in a new issue