style: 🎨 delete icon and reduce icon size
CI / Build and Push (push) Successful in 7s
CI / SonarQube (push) Successful in 31s

This commit is contained in:
2026-05-14 12:38:36 +00:00
parent 6069f5395a
commit 22a3dc7cbe
+5 -4
View File
@@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import { onMounted, ref } from "vue"; import { onMounted, ref } from "vue";
import { Folder, Pencil } from "lucide-vue-next"; import { Folder, Pencil, Trash2 } from "lucide-vue-next";
import { import {
api, api,
type HostRow, type HostRow,
@@ -724,14 +724,15 @@ async function deleteIdentityRow(id: number) {
title="Edit identity" title="Edit identity"
@click="openEditIdentity(i)" @click="openEditIdentity(i)"
> >
<Pencil class="h-4 w-4" aria-hidden="true" /> <Pencil class="h-3 w-3" aria-hidden="true" />
</button> </button>
<button <button
type="button" type="button"
class="shrink-0 text-red-400/70 hover:underline" class="shrink-0 text-red-400/70 hover:text-red-400"
title="Delete identity"
@click="deleteIdentityRow(i.id)" @click="deleteIdentityRow(i.id)"
> >
× <Trash2 class="h-3 w-3" aria-hidden="true" />
</button> </button>
</div> </div>
</li> </li>