style: 🎨 delete icon and reduce icon size
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user