Changed the color of delete button in dashboard from red to grey (#4307)

This commit is contained in:
Abhishek Srinivasan 2024-01-03 21:59:38 +05:30 committed by GitHub
parent 5ebea3134a
commit 23e80882c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@
<router-link :to=" '/clone/' + monitor.id " class="btn btn-normal">
<font-awesome-icon icon="clone" /> {{ $t("Clone") }}
</router-link>
<button class="btn btn-danger" @click="deleteDialog">
<button class="btn btn-normal text-danger" @click="deleteDialog">
<font-awesome-icon icon="trash" /> {{ $t("Delete") }}
</button>
</div>