- 법인 탈퇴 시 민감정보 삭제 로직 추가
- CSS 수정: 폰트 크기 제거 및 스타일 변경 적용 - 예상완료일 요일 계산 로직 추가
This commit is contained in:
@@ -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
@@ -876,6 +876,26 @@
|
||||
// 모바일에서는 2개 버튼만 표시되는 경우 (이전, 수정)
|
||||
display: none;
|
||||
}
|
||||
|
||||
// 모바일: 앱 수정 마법사 UI 표현이 어려워 버튼 숨기고 PC 안내 노출
|
||||
&.app-modify-btn {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PC 환경 안내 문구 - 모바일에서만 노출 (앱 수정)
|
||||
.app-modify-pc-only-message {
|
||||
display: none;
|
||||
margin: 0;
|
||||
padding: 0 20px 24px;
|
||||
color: $text-gray;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
line-height: 1.5;
|
||||
|
||||
@media (max-width: $breakpoint-sm) {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -194,6 +194,22 @@
|
||||
}
|
||||
}
|
||||
|
||||
// Expected Completion Date (pending requests only)
|
||||
.app-list-expect-date {
|
||||
margin-left: auto;
|
||||
font-family: $font-family-primary;
|
||||
font-size: 14px;
|
||||
font-weight: $font-weight-regular;
|
||||
color: #6e7780;
|
||||
white-space: nowrap;
|
||||
flex-shrink: 0;
|
||||
|
||||
// Figma 모바일: 12px
|
||||
@include respond-to('sm') {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
// App Description
|
||||
.app-list-description {
|
||||
font-family: $font-family-primary;
|
||||
@@ -246,4 +262,23 @@
|
||||
font-size: 14px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
// 모바일: 앱 생성 마법사 UI 표현이 어려워 버튼 숨기고 PC 안내 노출
|
||||
@include respond-to('sm') {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
// PC 환경 안내 문구 - 모바일에서만 노출
|
||||
.app-create-pc-only-message {
|
||||
display: none;
|
||||
margin: 0;
|
||||
color: $text-gray;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
line-height: 1.5;
|
||||
|
||||
@include respond-to('sm') {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -479,7 +479,6 @@
|
||||
background-color: $white;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 20px;
|
||||
color: $text-dark;
|
||||
|
||||
// Figma 모바일: 40px 높이, 14px 폰트
|
||||
|
||||
Reference in New Issue
Block a user