Skip to content

Commit

Permalink
Fix command panel spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
liguori committed Sep 30, 2024
1 parent 7f3cc12 commit 51fc11b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Savings.SPA/Pages/FixedItemEdit.razor
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
</InputSelectNumber>
<ValidationMessage For="@(() => fixedItemToEdit.CategoryID)" />
</div>
<div class="text-center">
<div class="text-center cmd-panel">
<button type="submit" class="btn btn-success" disabled="@OperationRunning">
<span class="oi oi-circle-check" aria-hidden="true"></span>SAVE
</button>
Expand Down
2 changes: 1 addition & 1 deletion src/Savings.SPA/Pages/RecurrentItemEdit.razor
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
</InputSelectNumber>
<ValidationMessage For="@(() => recurrentItemToEdit.CategoryID)" />
</div>
<div class="text-center">
<div class="text-center cmd-panel">
<button type="submit" class="btn btn-success" disabled="@OperationRunning">
<span class="oi oi-circle-check" aria-hidden="true"></span>SAVE
</button>
Expand Down
4 changes: 4 additions & 0 deletions src/Savings.SPA/wwwroot/css/savings.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
color: #0159cc;
}

.cmd-panel {
margin-top: 15px;
}

/*Projection*/
#history tbody > tr > :nth-child(4), thead > tr > :nth-child(4) {
border-right: 1px solid #b2b2b2;
Expand Down

0 comments on commit 51fc11b

Please sign in to comment.