This commit is contained in:
nevermoregb 2025-03-07 14:22:40 +09:00
commit dae3ef8ede
3 changed files with 9 additions and 9 deletions

View File

@ -211,7 +211,7 @@ cursor: not-allowed !important;
justify-content: flex-start;
gap: 10px;
padding: 0;
margin-left: 20px;
margin-left: 12%;
}
.profile-img {
transition: all 0.2s ease-in-out;

View File

@ -86,15 +86,15 @@ const profileSize = computed(() => {
const totalUsers = userList.value.length;
if (windowWidth.value >= 1650) {
if (totalUsers <= 10) return "68px";
if (totalUsers <= 15) return "55px";
if (totalUsers <= 10) return "60px";
if (totalUsers <= 15) return "53px";
return "45px";
} else if (windowWidth.value >= 1300) {
if (totalUsers <= 10) return "45px";
if (totalUsers <= 15) return "40px";
return "30px";
} else if (windowWidth.value >= 1400) {
if (totalUsers <= 10) return "48px";
if (totalUsers <= 15) return "30px";
return "20px";
} else if (windowWidth.value >= 1024) {
if (totalUsers <= 10) return "40px";
if (totalUsers <= 10) return "35px";
if (totalUsers <= 15) return "30px";
return "20px";
} else {