make cards highlight with neon

This commit is contained in:
arcbtc 2024-12-20 02:02:57 +00:00
parent 0fa8fca70e
commit 86a1313258

View File

@ -216,13 +216,12 @@
v-for="wallet in g.user.wallets" v-for="wallet in g.user.wallets"
:key="wallet.id" :key="wallet.id"
class="wallet-list-card" class="wallet-list-card"
bordered
tag="a" tag="a"
:href="wallet.url" :href="wallet.url"
:style=" :style="
g.wallet && g.wallet.id === wallet.id g.wallet && g.wallet.id === wallet.id
? `border: 1px solid ${primaryColor}; width: 250px; text-decoration: none;` ? `border: 1px solid ${primaryColor}; width: 250px; text-decoration: none;`
: 'width: 250px; text-decoration: none;' : 'width: 250px; text-decoration: none; border: 0px'
" "
:class="{ :class="{
'active-wallet-card': g.wallet && g.wallet.id === wallet.id 'active-wallet-card': g.wallet && g.wallet.id === wallet.id