diff --git a/qortal-ui-core/src/components/wallet-profile.js b/qortal-ui-core/src/components/wallet-profile.js index 65e2ec6c..475dfea8 100644 --- a/qortal-ui-core/src/components/wallet-profile.js +++ b/qortal-ui-core/src/components/wallet-profile.js @@ -12,6 +12,7 @@ class WalletProfile extends connect(store)(LitElement) { wallet: { type: Object }, nodeConfig: { type: Object }, accountInfo: { type: Object }, + imageUrl: { type: String }, theme: { type: String, reflect: true } } } @@ -30,6 +31,7 @@ class WalletProfile extends connect(store)(LitElement) { names: [], addressInfo: {} } + this.imageUrl = '' this.theme = localStorage.getItem('qortalTheme') ? localStorage.getItem('qortalTheme') : 'light' } @@ -56,9 +58,9 @@ class WalletProfile extends connect(store)(LitElement) { margin: 0; font-size: 18px; font-weight:500; - display: inline-block; width:100%; padding-bottom:8px; + display: flex; } #blocksMinted { @@ -76,16 +78,37 @@ class WalletProfile extends connect(store)(LitElement) { margin-top:8px; font-size:11px; } + + .round-fullinfo { + position: relative; + width: 69px; + height: 69px; + border-radius: 50%; + } + + .full-info-logo { + width: 69px; + height: 69px; + border-radius: 50%; + } + + .inline-block-child { + flex: 1; + }
${translate("walletprofile.blocksminted")} - ${this.accountInfo.addressInfo.blocksMinted + this.accountInfo.addressInfo.blocksMintedAdjustment}
+${translate("walletprofile.blocksminted")} - ${this.accountInfo.addressInfo.blocksMinted + this.accountInfo.addressInfo.blocksMintedAdjustment}
+${this.wallet.addresses[0].address}