Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
clean2001 committed Sep 5, 2024
2 parents 4a8d547 + b137202 commit 22f3705
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
4 changes: 1 addition & 3 deletions src/views/siderCard/MySiderCard.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<v-container>
<v-row justify="center" align="center" class="line">
<div style="position: relative; margin: 0 30px; overflow: visible;">
<div style="position: relative; margin: 20px 30px; overflow: visible;">
<v-avatar class="mx-auto" size="120">
<img :src="data.image" alt="" style="height: 120px; width: 120px; object-fit: cover;" />
<!-- 파일 선택 인풋 -->
Expand Down Expand Up @@ -363,8 +363,6 @@ export default {
}
.mx-auto {
margin-left: auto;
margin-right: auto;
margin-bottom: 60px;
}
Expand Down
9 changes: 4 additions & 5 deletions src/views/siderCard/SiderCard.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<template>
<v-container>
<v-row justify="center" align="center" class="line">
<div style="margin: 0 30px;" justify="center" align="center">
<!-- <v-avatar class="mx-auto" size="120"> -->
<div style="margin: 20px 30px;" justify="center" align="center">
<v-avatar class="mx-auto" size="120">
<img
:src="data.image"
alt=""
style="height: 120px; width: 120px; object-fit: cover;"
/>
<!-- </v-avatar> -->
</v-avatar>
</div>
<v-col>
<v-row justify="space-between">
Expand Down Expand Up @@ -241,6 +241,7 @@ export default {
this.data.launchedProjects = data.launchedProjectRes;
// this.data.teckStacks = data.teckStackRes
this.$store.dispatch("updateTechStacksRes", data.teckStackRes);
console.log(response.data.result);
} catch (e) {
console.log(e.response.data);
}
Expand Down Expand Up @@ -281,8 +282,6 @@ export default {
}
.mx-auto {
margin-left: auto;
margin-right: auto;
margin-bottom: 60px;
}
Expand Down

0 comments on commit 22f3705

Please sign in to comment.