use btn instead of badge

This commit is contained in:
Hayden 2022-10-19 17:51:24 -08:00
parent ad2c9a241f
commit f2e1003e13

View file

@ -11,7 +11,7 @@
<Currency v-else-if="detail.type == 'currency'" :amount="detail.text" /> <Currency v-else-if="detail.type == 'currency'" :amount="detail.text" />
<template v-else-if="detail.type === 'link'"> <template v-else-if="detail.type === 'link'">
<div class="tooltip tooltip-primary tooltip-right" :data-tip="detail.href"> <div class="tooltip tooltip-primary tooltip-right" :data-tip="detail.href">
<a class="badge p-3 badge-primary hover:bg-primary/80" :href="detail.href" target="_blank"> <a class="btn btn-primary btn-xs" :href="detail.href" target="_blank">
<Icon name="mdi-open-in-new" class="mr-2 swap-on"></Icon> <Icon name="mdi-open-in-new" class="mr-2 swap-on"></Icon>
{{ detail.text }} {{ detail.text }}
</a> </a>