From 820691b1ecf49cd5663c3ccb1d2de6b12b691b0b Mon Sep 17 00:00:00 2001 From: FEARmeR Date: Mon, 22 May 2023 10:06:52 +0100 Subject: [PATCH] =?UTF-8?q?Navbar=20=D0=B2=D0=B5=D0=B7=D0=B4=D0=B5=20?= =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD,=20=D1=81?= =?UTF-8?q?=D1=81=D1=8B=D0=BB=D0=BA=D0=B8=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D1=8B=20=D0=BD=D0=B0=20=D0=BE=D1=82?= =?UTF-8?q?=D0=BD=D0=BE=D1=81=D0=B8=D1=82=D0=B5=D0=BB=D1=8C=D0=BD=D1=8B?= =?UTF-8?q?=D0=B5,=20=D0=BD=D0=B5=D0=BC=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=BA?= =?UTF-8?q?=D0=BE=D1=81=D0=BC=D0=B5=D1=82=D0=B8=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LandingPages/Profile/AllProfiles.vue | 5 +- src/views/LandingPages/Profile/Profile.vue | 46 +++++++++++++++---- .../LandingPages/Project/AllProjects.vue | 6 +-- src/views/LandingPages/Project/Project.vue | 2 + 4 files changed, 45 insertions(+), 14 deletions(-) diff --git a/src/views/LandingPages/Profile/AllProfiles.vue b/src/views/LandingPages/Profile/AllProfiles.vue index 453b7b0..3b370ad 100644 --- a/src/views/LandingPages/Profile/AllProfiles.vue +++ b/src/views/LandingPages/Profile/AllProfiles.vue @@ -2,6 +2,7 @@ import { onMounted, onUnmounted } from "vue"; import axios from 'axios'; import { ref } from "vue"; +import NavbarDefault from "../../../examples/navbars/NavbarDefault.vue"; const searchQuery = ref(''); @@ -29,7 +30,7 @@ onMounted(() => { - \ No newline at end of file +.profile-container { +display: flex; +flex-direction: column; +align-items: center; +width: 80%; +margin: auto; +padding: 20px; +box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1); +} + +.profile-container img { +width: 100px; +height: 100px; +border-radius: 50%; +object-fit: cover; +margin-bottom: 20px; +} + \ No newline at end of file diff --git a/src/views/LandingPages/Project/AllProjects.vue b/src/views/LandingPages/Project/AllProjects.vue index a6c6dc5..f5c9953 100644 --- a/src/views/LandingPages/Project/AllProjects.vue +++ b/src/views/LandingPages/Project/AllProjects.vue @@ -2,7 +2,7 @@ import { onMounted, onUnmounted } from "vue"; import axios from 'axios'; import { ref } from "vue"; - +import NavbarDefault from "../../../examples/navbars/NavbarDefault.vue"; const searchQuery = ref(''); const searchResultProjects = ref([]); @@ -29,14 +29,14 @@ onMounted(() => {