- 법인 탈퇴 시 민감정보 삭제 로직 추가
eapim-portal CI / build (push) Has been cancelled
eapim-portal Test / test (push) Has been cancelled

- CSS 수정: 폰트 크기 제거 및 스타일 변경 적용
- 예상완료일 요일 계산 로직 추가
This commit is contained in:
Rinjae
2026-06-30 15:38:40 +09:00
parent 8d232734b1
commit a91b56ed11
9 changed files with 157 additions and 6 deletions
+53 -1
View File
@@ -11547,7 +11547,6 @@ button.djb-comment-submit:disabled {
background-color: #FFFFFF;
display: flex;
align-items: center;
font-size: 20px;
color: #1A1A2E;
}
@media (max-width: 768px) {
@@ -13680,7 +13679,26 @@ input[type=checkbox]:checked + .custom-checkbox {
.form-actions-center .btn.btn-danger {
display: none;
}
.form-actions-center .btn-submit.app-modify-btn,
.form-actions-center .btn.app-modify-btn {
display: none;
}
}
.app-modify-pc-only-message {
display: none;
margin: 0;
padding: 0 20px 24px;
color: #64748B;
font-size: 14px;
text-align: center;
line-height: 1.5;
}
@media (max-width: 768px) {
.app-modify-pc-only-message {
display: block;
}
}
@media (max-width: 768px) {
.app-management-container {
padding: 24px 16px;
@@ -13837,6 +13855,21 @@ input[type=checkbox]:checked + .custom-checkbox {
}
}
.app-list-expect-date {
margin-left: auto;
font-family: "Spoqa Han Sans Neo", "SpoqaHanSans", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 14px;
font-weight: 400;
color: #6e7780;
white-space: nowrap;
flex-shrink: 0;
}
@media (max-width: 768px) {
.app-list-expect-date {
font-size: 12px;
}
}
.app-list-description {
font-family: "Spoqa Han Sans Neo", "SpoqaHanSans", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 14px;
@@ -13880,6 +13913,25 @@ input[type=checkbox]:checked + .custom-checkbox {
border-radius: 8px;
}
}
@media (max-width: 768px) {
.btn-app-create {
display: none;
}
}
.app-create-pc-only-message {
display: none;
margin: 0;
color: #64748B;
font-size: 14px;
text-align: center;
line-height: 1.5;
}
@media (max-width: 768px) {
.app-create-pc-only-message {
display: block;
}
}
.notice-page {
min-height: calc(100vh - 140px);
File diff suppressed because one or more lines are too long