|
|
@@ -9,7 +9,7 @@
|
|
|
|
|
|
<div class="q-px-md q-mt-md">
|
|
|
<q-card class="profile-card bg-surface shadow-card card-border" :flat="false">
|
|
|
- <q-btn flat round dense icon="mdi-share-variant-outline" color="grey-6" class="absolute-top-right q-ma-sm" @click="shareProfile" />
|
|
|
+ <q-btn flat round dense icon="mdi-share-variant-outline" color="grey-6" class="absolute-top-right q-ma-sm share-btn" @click="shareProfile" />
|
|
|
|
|
|
<q-card-section class="column items-center q-pb-md">
|
|
|
<q-avatar size="70px" class="shadow-card" :style="!user.profile_photo ? avatarStyle : undefined">
|
|
|
@@ -233,7 +233,6 @@ const copyToClipboard = async (text) => {
|
|
|
return false;
|
|
|
};
|
|
|
|
|
|
-// compartilha perfil
|
|
|
const shareProfile = async () => {
|
|
|
const message = shareMessage.value;
|
|
|
|
|
|
@@ -352,6 +351,9 @@ onMounted(async () => {
|
|
|
.profile-card {
|
|
|
position: relative;
|
|
|
}
|
|
|
+.share-btn {
|
|
|
+ z-index: 1;
|
|
|
+}
|
|
|
|
|
|
.share-code {
|
|
|
letter-spacing: 0.5px;
|