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(() => {