휴가 css 수정
This commit is contained in:
parent
b08e72b813
commit
e340319595
@ -211,7 +211,7 @@ cursor: not-allowed !important;
|
|||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-left: 20px;
|
margin-left: 12%;
|
||||||
}
|
}
|
||||||
.profile-img {
|
.profile-img {
|
||||||
transition: all 0.2s ease-in-out;
|
transition: all 0.2s ease-in-out;
|
||||||
|
|||||||
@ -86,15 +86,15 @@ const profileSize = computed(() => {
|
|||||||
const totalUsers = userList.value.length;
|
const totalUsers = userList.value.length;
|
||||||
|
|
||||||
if (windowWidth.value >= 1650) {
|
if (windowWidth.value >= 1650) {
|
||||||
if (totalUsers <= 10) return "68px";
|
if (totalUsers <= 10) return "60px";
|
||||||
if (totalUsers <= 15) return "55px";
|
if (totalUsers <= 15) return "53px";
|
||||||
return "45px";
|
return "45px";
|
||||||
} else if (windowWidth.value >= 1300) {
|
} else if (windowWidth.value >= 1400) {
|
||||||
if (totalUsers <= 10) return "45px";
|
if (totalUsers <= 10) return "48px";
|
||||||
if (totalUsers <= 15) return "40px";
|
if (totalUsers <= 15) return "30px";
|
||||||
return "30px";
|
return "20px";
|
||||||
} else if (windowWidth.value >= 1024) {
|
} else if (windowWidth.value >= 1024) {
|
||||||
if (totalUsers <= 10) return "40px";
|
if (totalUsers <= 10) return "35px";
|
||||||
if (totalUsers <= 15) return "30px";
|
if (totalUsers <= 15) return "30px";
|
||||||
return "20px";
|
return "20px";
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@ -148,7 +148,7 @@ function handleMonthChange(viewInfo) {
|
|||||||
const year = currentDate.getFullYear();
|
const year = currentDate.getFullYear();
|
||||||
const month = String(currentDate.getMonth() + 1).padStart(2, "0");
|
const month = String(currentDate.getMonth() + 1).padStart(2, "0");
|
||||||
loadCalendarData(year, month);
|
loadCalendarData(year, month);
|
||||||
}
|
}
|
||||||
// 캘린더 클릭
|
// 캘린더 클릭
|
||||||
function handleDateClick(info) {
|
function handleDateClick(info) {
|
||||||
const clickedDateStr = info.dateStr;
|
const clickedDateStr = info.dateStr;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user