46 lines
950 B
Vue
46 lines
950 B
Vue
<template>
|
|
<div class="mkt-header">
|
|
<div class="assets-user">
|
|
<div class="assets-user-img">
|
|
<img src="@/assets/img/marketplace/0000.png" alt="">
|
|
</div>
|
|
<div class="assets-user-name">{{ localWalletStore.showAddress }}</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from "vue"
|
|
import {walletStore} from "@/store/wallet";
|
|
|
|
const localWalletStore = walletStore()
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mkt-header {
|
|
width: 100%;
|
|
.assets-user {
|
|
display: flex;
|
|
// margin: 168px 0 45px 77px;
|
|
padding: 168px 0 45px 77px;
|
|
.assets-user-img {
|
|
width: 173.8px;
|
|
height: 173.8px;
|
|
// border: 1px solid #000;
|
|
margin-right: 25px;
|
|
border-radius: 20px;
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
.assets-user-name {
|
|
font-family: 'Poppins';
|
|
font-weight: bold;
|
|
font-size: 30px;
|
|
color: #FFFFFF;
|
|
}
|
|
}
|
|
}
|
|
</style> |