Remove outline from delete buttons in avatar database provider UI (#1598)

* Remove the outline from delete provider button

* Change button to icon to avoid hover background

* Tweak default opacity
This commit is contained in:
monolithic827
2026-01-26 07:41:34 +02:00
committed by GitHub
parent dbc98cdc4e
commit 27f913552e

View File

@@ -13,9 +13,7 @@
style="margin-top: 5px"
@change="saveAvatarProviderList">
<template #actions>
<Button variant="outline" size="icon" @click="removeAvatarProvider(provider)">
<Trash2 />
</Button>
<Trash2 class="cursor-pointer opacity-80 hover:opacity-100" @click="removeAvatarProvider(provider)" />
</template>
</InputGroupAction>