fix: button color

This commit is contained in:
Alisa | Side.one 2023-05-20 14:19:59 +08:00
parent 0ce8d81c9f
commit 33e1503eac
4 changed files with 6 additions and 6 deletions

View File

@ -229,7 +229,7 @@ const result = ref('');
</div> </div>
<div class="mt-4 mb-4"> <div class="mt-4 mb-4">
<button <button
class="btn btn-success px-4 text-white" class="btn !btn-yes !border-yes px-4 text-white"
@click="queryContract()" @click="queryContract()"
> >
Query Contract Query Contract

View File

@ -201,7 +201,7 @@ const color = computed(() => {
<a <a
:color="store.trustColor" :color="store.trustColor"
class="mt-5 text-white btn btn-success w-full md:!w-[400px] flex items-center" class="mt-5 !text-white btn !bg-yes !border-yes w-full md:!w-[400px] flex items-center"
:href="ticker.trade_url" :href="ticker.trade_url"
target="_blank" target="_blank"
> >
@ -355,8 +355,8 @@ const color = computed(() => {
<div class="grid grid-cols-3 gap-4 px-4 pb-6 mt-4"> <div class="grid grid-cols-3 gap-4 px-4 pb-6 mt-4">
<label for="PingTokenConvert" class="btn btn-primary text-white">Convert</label> <label for="PingTokenConvert" class="btn btn-primary text-white">Convert</label>
<label for="send" class="btn btn-success text-white" @click="dialog.open('send', {})">Send</label> <label for="send" class="btn !bg-yes !border-yes text-white" @click="dialog.open('send', {})">Send</label>
<RouterLink to="/wallet/receive" class="btn btn-info text-white">Receive</RouterLink> <RouterLink to="/wallet/receive" class="btn !bg-info !border-info text-white">Receive</RouterLink>
</div> </div>
<Teleport to="body"> <Teleport to="body">
<ping-token-convert <ping-token-convert

View File

@ -263,7 +263,7 @@ async function addAddress(acc: AccountEntry) {
</div> </div>
</td> </td>
<td class="text-right"> <td class="text-right">
<span class="btn btn-success btn-xs text-white" @click="addAddress(acc)"> <span class="btn !bg-yes !border-yes btn-xs text-white" @click="addAddress(acc)">
<Icon icon="mdi:plus"/> <Icon icon="mdi:plus"/>
</span> </span>
</td> </td>

View File

@ -16,7 +16,7 @@ const qrcode = useQRCode(walletStore.currentAddress);
{{ walletStore.currentAddress }} {{ walletStore.currentAddress }}
</div> </div>
<div class="mt-4 mb-4"> <div class="mt-4 mb-4">
<button class="btn btn-success text-white px-10">Go To Pay</button> <button class="btn !bg-yes !border-yes text-white px-10">Go To Pay</button>
</div> </div>
</div> </div>
</template> </template>