Compare commits

...

2 Commits

2 changed files with 2 additions and 4 deletions

View File

@ -76,9 +76,7 @@
<a asp-page="EditBlogPost" asp-route-id="@post.Id" class="btn btn-info">
<i class="fa-solid fa-pen-to-square"></i>
</a>
<a asp-controller="BlogAdmin" asp-action="DeletePost" asp-route-pid="@post.Id" class="btn btn-danger">
<i class="fa-solid fa-trash"></i>
</a>
<button class="btn btn-danger"><i class="fa-solid fa-trash"></i></button>
</td>
</tr>
}

View File

@ -126,6 +126,6 @@ textarea {
}
}
table.table tr:hover td {
table.table.highlight-on-hover tr:hover td {
background-color: rgba(#03A9F4, 10%);
}