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

This commit is contained in:
nevermoregb 2025-04-07 11:50:19 +09:00
parent 0a3f639d06
commit fc32aba4ab
3 changed files with 6 additions and 2 deletions

View File

@ -819,3 +819,7 @@ input:checked + .slider:before {
.font-bold {
font-weight: bold;
}
.profile-img {
object-fit: contain;
}

View File

@ -7,7 +7,7 @@
v-if="user"
:src="`${profileImgUrl}profile/${user.profile}`"
alt="Profile Image"
class="w-px-50 h-px-50 rounded-circle"
class="w-px-50 h-px-50 rounded-circle profile-img"
@error="$event.target.src = '/img/icons/icon.png'"
/>
<p class="mt-2 fw-bold">

View File

@ -7,7 +7,7 @@
:src="`${profileImgUrl}profile/${member.MEMBERPRF}`"
:style="`border-color: ${member.usercolor} !important;`"
alt="User Profile"
class="rounded-circle border border-2"
class="rounded-circle border border-2 profile-img"
@error="$event.target.src = '/img/icons/icon.png'"
/>
</div>