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