UI 일부 개선

This commit is contained in:
Rinjae
2026-01-05 11:31:12 +09:00
parent 44957e8883
commit f7dff3e8db
17 changed files with 1118 additions and 166 deletions
+156 -66
View File
@@ -1356,7 +1356,7 @@ hr {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
font-size: 22px;
font-size: 20px;
padding: 8px 16px;
border-radius: 8px;
transition: all 0.3s ease;
@@ -3173,7 +3173,7 @@ hr {
}
.common-title-bar .common-title, .user-management-container .table-controls .common-title, .app-list-title-section .common-title, .register-title-bar .common-title {
font-family: "Spoqa Han Sans Neo", "SpoqaHanSans", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 28px;
font-size: 22px;
font-weight: 700;
color: #1A1A2E;
margin: 0;
@@ -3943,14 +3943,14 @@ select.form-control {
.form-row {
display: flex;
align-items: flex-start;
gap: 40px;
margin-bottom: 50px;
gap: 20px;
margin-bottom: 16px;
}
@media (max-width: 1024px) {
.form-row {
flex-direction: column;
gap: 12px;
margin-bottom: 30px;
gap: 10px;
margin-bottom: 12px;
}
}
@@ -3958,8 +3958,8 @@ select.form-control {
display: flex;
align-items: center;
gap: 5px;
min-width: 214px;
width: 214px;
min-width: 160px;
width: 160px;
flex-shrink: 0;
}
@media (max-width: 1024px) {
@@ -3969,7 +3969,7 @@ select.form-control {
}
}
.form-label-wrapper.label-offset {
margin-top: 15px;
margin-top: 10px;
}
@media (max-width: 1024px) {
.form-label-wrapper.label-offset {
@@ -3978,13 +3978,13 @@ select.form-control {
}
.form-label-text {
font-size: 20px;
font-weight: 700;
font-size: 15px;
font-weight: 400;
color: #000000;
}
@media (max-width: 1024px) {
.form-label-text {
font-size: 16px;
font-size: 14px;
}
}
.form-label-text.required::after {
@@ -4012,6 +4012,57 @@ select.form-control {
}
}
.form-input {
width: 100%;
padding: 8px 12px;
border: 1px solid #E2E8F0;
border-radius: 8px;
font-size: 14px;
color: #1A1A2E;
background: #FFFFFF;
transition: all 0.3s ease;
}
.form-input:focus {
outline: none;
border-color: #0049b4;
box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1);
}
.form-input:disabled, .form-input.input-readonly {
background: #F8FAFC;
color: #64748B;
cursor: not-allowed;
}
.form-input::placeholder {
color: #94A3B8;
}
.form-select {
width: 100%;
padding: 8px 12px;
border: 1px solid #E2E8F0;
border-radius: 8px;
font-size: 14px;
color: #1A1A2E;
background: #FFFFFF;
cursor: pointer;
transition: all 0.3s ease;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 24px center;
padding-right: 48px;
}
.form-select:focus {
outline: none;
border-color: #0049b4;
box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1);
}
.form-select:disabled {
background-color: #F8FAFC;
color: #94A3B8;
cursor: not-allowed;
}
.char-counter-wrapper {
display: block;
text-align: right;
@@ -4045,9 +4096,19 @@ select.form-control {
user-select: none;
flex-shrink: 0;
}
.compound-input .phone-number {
flex: 1;
width: 100%;
.compound-input .form-input.phone-number {
flex: none;
width: 130px;
max-width: 130px;
}
.compound-input .form-select.phone-number {
flex: none;
width: 130px;
max-width: 130px;
padding-right: 28px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 8px center;
}
.compound-input .biz-reg-number {
flex: 1;
@@ -4905,25 +4966,25 @@ select.form-control {
transition: all 0.3s ease;
}
.login-btn-box {
height: 22px;
height: 32px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 4px;
padding: 4px 10px;
gap: 6px;
padding: 6px 16px;
color: #212529;
text-decoration: none;
border: 1px solid #212529;
border: none;
border-radius: 6px;
font-family: "Spoqa Han Sans Neo", "SpoqaHanSans", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-weight: 600;
font-size: 14px;
font-size: 16px;
background: transparent;
transition: all 0.3s ease;
}
.login-btn-box .user-icon {
width: 16px;
height: 16px;
width: 18px;
height: 18px;
flex-shrink: 0;
}
@@ -10461,11 +10522,11 @@ select.form-control {
align-items: center;
justify-content: center;
background: #EDF9FE;
padding: 60px 20px;
padding: 30px 20px;
position: relative;
border-radius: 12px;
margin-top: 60px;
margin-bottom: 60px;
margin-top: 30px;
margin-bottom: 30px;
}
.signup-selection-container {
@@ -10491,7 +10552,7 @@ select.form-control {
.signup-logo {
width: 90px;
height: 90px;
margin-bottom: 30px;
margin-bottom: 15px;
}
.signup-logo img {
width: 100%;
@@ -10505,7 +10566,7 @@ select.form-control {
font-weight: 400;
color: #000000;
text-align: center;
margin-bottom: 40px;
margin-bottom: 20px;
line-height: 1;
}
@@ -10514,8 +10575,8 @@ select.form-control {
max-width: 504px;
display: flex;
flex-direction: column;
gap: 40px;
margin-bottom: 60px;
gap: 20px;
margin-bottom: 30px;
}
.signup-btn {
@@ -10864,12 +10925,11 @@ select.form-control {
.register-form-container .form-input {
width: 100%;
height: 60px;
padding: 0 20px;
padding: 8px 12px;
border: 1px solid #dadada;
border-radius: 12px;
border-radius: 8px;
background-color: #FFFFFF;
font-size: 20px;
font-size: 14px;
color: #1A1A2E;
outline: none;
transition: border-color 0.2s ease;
@@ -10882,18 +10942,17 @@ select.form-control {
}
@media (max-width: 1024px) {
.register-form-container .form-input {
height: 50px;
font-size: 16px;
font-size: 14px;
}
}
.register-form-container .form-textarea {
width: 100%;
min-height: 190px;
padding: 18px 20px;
min-height: 120px;
padding: 8px 12px;
border: 1px solid #dadada;
border-radius: 12px;
border-radius: 8px;
background-color: #FFFFFF;
font-size: 20px;
font-size: 14px;
color: #1A1A2E;
outline: none;
resize: vertical;
@@ -13365,7 +13424,7 @@ input[type=checkbox]:checked + .custom-checkbox {
.app-list-name {
font-family: "Spoqa Han Sans Neo", "SpoqaHanSans", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 22px;
font-size: 18px;
font-weight: 700;
color: #1A1A2E;
margin: 0;
@@ -13381,7 +13440,7 @@ input[type=checkbox]:checked + .custom-checkbox {
.app-list-description {
font-family: "Spoqa Han Sans Neo", "SpoqaHanSans", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 16px;
font-size: 14px;
font-weight: 400;
color: #6e7780;
margin: 0;
@@ -15103,6 +15162,14 @@ input[type=checkbox]:checked + .custom-checkbox {
padding: 0;
}
}
.org-register-page.corporate-register .org-register-container {
padding: 0;
}
@media (max-width: 768px) {
.org-register-page.corporate-register .org-register-container {
padding: 0 16px;
}
}
@media (max-width: 768px) {
.org-register-container {
@@ -15134,7 +15201,7 @@ input[type=checkbox]:checked + .custom-checkbox {
margin-bottom: 32px;
}
.org-section-header h3 {
font-size: 20px;
font-size: 16px;
font-weight: 400;
color: #515961;
margin: 0;
@@ -15214,10 +15281,10 @@ input[type=checkbox]:checked + .custom-checkbox {
}
.org-form-group {
margin-bottom: 8px;
margin-bottom: 16px;
display: flex;
align-items: flex-start;
gap: 24px;
gap: 20px;
}
.org-form-group:last-child {
margin-bottom: 0;
@@ -15225,7 +15292,8 @@ input[type=checkbox]:checked + .custom-checkbox {
@media (max-width: 768px) {
.org-form-group {
flex-direction: column;
gap: 16px;
gap: 10px;
margin-bottom: 12px;
}
}
@@ -15233,11 +15301,11 @@ input[type=checkbox]:checked + .custom-checkbox {
display: flex;
align-items: center;
gap: 8px;
font-size: 16px;
font-weight: 600;
font-size: 15px;
font-weight: 400;
color: #1A1A2E;
min-width: 180px;
padding-top: 16px;
min-width: 160px;
padding-top: 10px;
}
.org-form-label .required-badge {
display: inline-flex;
@@ -15302,10 +15370,10 @@ input[type=checkbox]:checked + .custom-checkbox {
.org-form-input {
width: 100%;
padding: 16px 24px;
border: 2px solid #E2E8F0;
padding: 8px 12px;
border: 1px solid #E2E8F0;
border-radius: 8px;
font-size: 16px;
font-size: 14px;
color: #1A1A2E;
transition: all 0.3s ease;
background: #FFFFFF;
@@ -15341,9 +15409,19 @@ input[type=checkbox]:checked + .custom-checkbox {
flex: 1;
min-width: 0;
}
.org-compound-input .phone-number {
flex: 1;
width: 100%;
.org-compound-input .org-form-input.phone-number {
flex: none;
width: 130px;
max-width: 130px;
}
.org-compound-input .org-form-select.phone-number {
flex: none;
width: 130px;
max-width: 130px;
padding-right: 28px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 8px center;
}
.org-compound-input .separator {
color: #64748B;
@@ -15364,10 +15442,10 @@ input[type=checkbox]:checked + .custom-checkbox {
.org-form-select {
width: 100%;
padding: 16px 24px;
border: 2px solid #E2E8F0;
padding: 8px 12px;
border: 1px solid #E2E8F0;
border-radius: 8px;
font-size: 16px;
font-size: 14px;
color: #1A1A2E;
background: #FFFFFF;
cursor: pointer;
@@ -15467,11 +15545,14 @@ input[type=checkbox]:checked + .custom-checkbox {
}
.org-btn-check, .org-file-label {
padding: 16px 24px;
width: 172px;
padding: 8px 16px;
width: auto;
min-width: 100px;
background: #A4D6EA;
color: #FFFFFF;
border: 2px solid #A4D6EA;
border: 1px solid #A4D6EA;
border-radius: 8px;
font-size: 14px;
text-align: center;
justify-content: center;
}
@@ -15498,11 +15579,12 @@ input[type=checkbox]:checked + .custom-checkbox {
.org-file-display {
flex: 1;
padding: 16px 24px;
border: 2px dashed #E2E8F0;
padding: 8px 12px;
border: 1px dashed #E2E8F0;
border-radius: 8px;
background: #F8FAFC;
color: #94A3B8;
font-size: 14px;
cursor: default;
overflow: hidden;
text-overflow: ellipsis;
@@ -15516,21 +15598,29 @@ input[type=checkbox]:checked + .custom-checkbox {
}
.org-file-label {
display: inline-flex;
align-items: center;
gap: 6px;
cursor: pointer;
background: #3BA4ED;
border-radius: 12px;
border: 2px solid #3BA4ED;
border: 1px solid #3BA4ED;
}
.org-file-label svg {
width: 16px;
height: 16px;
flex-shrink: 0;
}
.org-file-label input[type=file] {
display: none;
}
.org-file-remove {
padding: 16px;
padding: 8px 12px;
background: #FF6B6B;
color: #FFFFFF;
border: none;
border-radius: 8px;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
}