more style to the buttons and form

This commit is contained in:
Ryan Peters
2025-07-17 17:13:27 -04:00
parent 14e56285f5
commit 1279e16fad
2 changed files with 113 additions and 13 deletions

View File

@@ -11,10 +11,10 @@
}
</select>
<a asp-action="Delete" asp-controller="Note" asp-route-noteName="@Model.CurrentNote" class="btn btn-danger">Delete</a>
<a asp-action="Delete" asp-controller="Note" asp-route-noteName="@Model.CurrentNote" class="btn-symbol btn-delete" title="Delete Note">✕</a>
<form method="post" class="action-form" asp-action="Create" asp-controller="Note">
<input type="text" name="noteName" placeholder="Note name" />
<button type="submit" class="btn btn-primary">Create</button>
<button type="submit" class="btn-symbol btn-create" title="Create Note">💾</button>
</form>
</div>