From 73c563f259b9f65ce2ceb22b5cb667aca16c2d5b Mon Sep 17 00:00:00 2001 From: irchen4 <81490453+irchen4@users.noreply.github.com> Date: Mon, 22 May 2023 21:43:38 +0300 Subject: [PATCH 1/4] =?UTF-8?q?=D0=BD=D0=B0=D0=B2=D0=B1=D0=B0=D1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/examples/navbars/NavbarDefault.vue | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/src/examples/navbars/NavbarDefault.vue b/src/examples/navbars/NavbarDefault.vue index e172a57..f080725 100644 --- a/src/examples/navbars/NavbarDefault.vue +++ b/src/examples/navbars/NavbarDefault.vue @@ -197,6 +197,11 @@ watch(
Местоположение: {{ profileData.location }}
Краткое описание: {{ profileData.short_intro }}
Биография: {{ profileData.bio }}
-Ссылка на изображение: {{ profileData.profile_image }}
+Ссылка на GitHub: {{ profileData.social_github }}
Ссылка на Twitter: {{ profileData.social_twitter }}
Ссылка на VK: {{ profileData.social_vk }}
diff --git a/src/views/LandingPages/Profile/Profile.vue b/src/views/LandingPages/Profile/Profile.vue index 0ae6379..ea14431 100644 --- a/src/views/LandingPages/Profile/Profile.vue +++ b/src/views/LandingPages/Profile/Profile.vue @@ -49,7 +49,7 @@ const processProfileData = (data) => {Местоположение: {{ profileData.location }}
Краткое описание: {{ profileData.short_intro }}
Биография: {{ profileData.bio }}
-Ссылка на изображение: {{ profileData.profile_image }}
+Ссылка на GitHub: {{ profileData.social_github }}
Ссылка на Twitter: {{ profileData.social_twitter }}
Ссылка на VK: {{ profileData.social_vk }}
From 23341b07b7a768aa0a9f639aad972a3b36345a64 Mon Sep 17 00:00:00 2001 From: irchen4 <81490453+irchen4@users.noreply.github.com> Date: Tue, 23 May 2023 16:07:56 +0300 Subject: [PATCH 4/4] =?UTF-8?q?=D0=BD=D0=B5=D0=BC=D0=BD=D0=BE=D0=B3=D0=BE?= =?UTF-8?q?=20=D0=BE=D1=84=D0=BE=D1=80=D0=BC=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F?= =?UTF-8?q?=203=20profile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/LandingPages/Profile/AdmireProfile.vue | 7 +++++-- src/views/LandingPages/Profile/EditProfile.vue | 6 +++--- src/views/LandingPages/Profile/Profile.vue | 14 ++++++++------ 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/src/views/LandingPages/Profile/AdmireProfile.vue b/src/views/LandingPages/Profile/AdmireProfile.vue index 51a5973..fcb924f 100644 --- a/src/views/LandingPages/Profile/AdmireProfile.vue +++ b/src/views/LandingPages/Profile/AdmireProfile.vue @@ -68,9 +68,9 @@ onMounted(async() => { .profile-container { width: 50%; padding: 20px; - box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1); + box-shadow: 0px 0px 10px 0px rgba(6, 104, 14, 0.281); margin: 5% auto; - background-color: #3d913257; + background-color: #ffffff57; border-radius: 10px; } @@ -85,9 +85,12 @@ onMounted(async() => { h1,h2{ /*font-family: 'PressStart2P';*/ color:rgb(70, 104, 105); + font-weight: 800; + text-align: center; } p{ font-family: 'SpaceMono' monospace; + font-weight: 500; } button{ background-color: #3d9132; diff --git a/src/views/LandingPages/Profile/EditProfile.vue b/src/views/LandingPages/Profile/EditProfile.vue index afc31d3..d00328b 100644 --- a/src/views/LandingPages/Profile/EditProfile.vue +++ b/src/views/LandingPages/Profile/EditProfile.vue @@ -139,9 +139,9 @@ onMounted(async() => { flex-direction: column; align-items: center; width: 80%; - margin: auto; + margin: 5% 10%; padding: 20px; - box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1); + box-shadow: 0px 0px 10px 0px rgba(6, 104, 14, 0.281); } .profile-container img { @@ -158,7 +158,7 @@ onMounted(async() => { padding: 10px; /* Add some padding */ margin-bottom: 15px; /* Add some margin */ box-sizing: border-box; /* Ensure padding doesn't affect final dimensions */ - border: 1px solid #ccc; /* Add a border */ + border: 1px solid #2ca33c; /* Add a border */ border-radius: 5px; /* Add rounded corners */ } diff --git a/src/views/LandingPages/Profile/Profile.vue b/src/views/LandingPages/Profile/Profile.vue index ea14431..3a60425 100644 --- a/src/views/LandingPages/Profile/Profile.vue +++ b/src/views/LandingPages/Profile/Profile.vue @@ -61,13 +61,11 @@ const processProfileData = (data) => {