Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
upper case on demo buttons
Browse files Browse the repository at this point in the history
(cherry picked from commit 8f007b2)
  • Loading branch information
mdvorak authored and koloar committed Nov 18, 2021
1 parent 3ded01c commit cd2058c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/app/hero-detail/hero-detail.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ button:disabled {
color: #ccc;
cursor: auto;
}

nav button + button {
margin-left: 10px;
}
6 changes: 4 additions & 2 deletions src/app/hero-detail/hero-detail.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ <h2>{{ hero.name | uppercase }} Details</h2>
<span>Tender names by resolver: </span>
<button *ngFor="let name of tenderNames" (click)="select(name)">{{name}}</button>
</div>
<button (click)="goBack()">go back</button>
<button (click)="save()">save</button>
<nav>
<button (click)="goBack()">Go Back</button>
<button (click)="save()">Save</button>
</nav>
</div>

0 comments on commit cd2058c

Please sign in to comment.