.
All checks were successful
LocalNet_front/pipeline/head This commit looks good

This commit is contained in:
dyhj625 2025-07-14 14:36:10 +09:00
parent fd1c8c4053
commit 5fb90c7330

View File

@ -8,7 +8,7 @@
<!-- 프로필 사진 -->
<img
:src="getProfileImage(user.photo)"
class="profile-img"
class="user-avatar2"
alt="프로필 사진"
@error="setDefaultImage"
/>
@ -107,4 +107,14 @@ onMounted(fetchUsers);
</script>
<style scoped>
.user-avatar2 {
width: 160px;
height: 200px;
object-fit: cover;
border-radius: 50%;
display: block;
margin: 1rem auto 0 auto;
margin-top: 0px;
margin-bottom: 10px;
}
</style>