Skip to content

Commit

Permalink
added frames completed/left
Browse files Browse the repository at this point in the history
  • Loading branch information
markschmidt42 committed Oct 14, 2023
1 parent 2fa62d0 commit 5e59820
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Components/TeamCard.razor
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else
{

<h3 class="card-title">Current Score: @Team.TeamScore</h3>
<span class="team-current-frames-left">Frames left: @Team.TeamFramesLeft</span>
<span class="team-current-frames-left">Frames: @(10-Team.TeamFramesLeft) completed (@Team.TeamFramesLeft left)</span>
<div class="cta col">
<button class="btn btn-primary dim" role="button" @onclick="@(() => DecrementScore())" disabled="@IsDisabled"><span class="oi oi-minus"></span> Point</button>
<button class="btn btn-primary" role="button" @onclick="@(() => IncrementScore())" disabled="@IsDisabled"><span class="oi oi-plus"></span> Point</button>
Expand Down
1 change: 1 addition & 0 deletions wwwroot/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ body {
a,
.btn-link {
color: #40525b;
margin-top: 20px;
}

a:hover,
Expand Down

0 comments on commit 5e59820

Please sign in to comment.