Merge pull request #321 from oxen-io/header-text-visability

Header text made visable for hardware wallet list
This commit is contained in:
Sean 2022-08-23 07:17:18 +10:00 committed by GitHub
commit a7b9274ddd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 6 deletions

View File

@ -31,9 +31,13 @@
</div> </div>
<div class="hr-separator" /> <div class="hr-separator" />
<!-- Hardware wallets --> <!-- Hardware wallets -->
<q-list-header v-if="hardware_wallets.length">{{ <q-list-header v-if="hardware_wallets.length">
$t("strings.hardwareWallets") <div class="header row justify-between items-center">
}}</q-list-header> <div class="header-title">
{{ $t("strings.hardwareWallets") }}
</div>
</div>
</q-list-header>
<WalletListItem <WalletListItem
v-for="wallet in hardware_wallets" v-for="wallet in hardware_wallets"
:key="`${wallet.address}-${wallet.name}`" :key="`${wallet.address}-${wallet.name}`"
@ -41,9 +45,13 @@
:open-wallet="openWallet" :open-wallet="openWallet"
/> />
<!-- Regular wallets --> <!-- Regular wallets -->
<q-list-header v-if="hardware_wallets.length">{{ <q-list-header v-if="hardware_wallets.length">
$t("strings.regularWallets") <div class="header row justify-between items-center">
}}</q-list-header> <div class="header-title">
{{ $t("strings.regularWallets") }}
</div>
</div>
</q-list-header>
<WalletListItem <WalletListItem
v-for="wallet in regular_wallets" v-for="wallet in regular_wallets"
:key="`${wallet.address}-${wallet.name}`" :key="`${wallet.address}-${wallet.name}`"