회원 가입 스타일 수정
This commit is contained in:
@@ -11246,9 +11246,8 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
}
|
||||
|
||||
.org-info-notice {
|
||||
padding: 24px;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 32px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.org-info-notice ul {
|
||||
list-style: none;
|
||||
@@ -11274,7 +11273,7 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
}
|
||||
|
||||
.org-form-group {
|
||||
margin-bottom: 40px;
|
||||
margin-bottom: 8px;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 24px;
|
||||
@@ -11299,10 +11298,17 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
min-width: 180px;
|
||||
padding-top: 16px;
|
||||
}
|
||||
.org-form-label .required::before {
|
||||
content: "* ";
|
||||
color: #FF6B6B;
|
||||
font-weight: 700;
|
||||
.org-form-label .required-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 2px 8px;
|
||||
background: #3BA4ED;
|
||||
color: #FFFFFF;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
border-radius: 4px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.org-form-label {
|
||||
@@ -11317,6 +11323,41 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.org-form-input-wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.org-input-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
}
|
||||
.org-input-row .org-form-input,
|
||||
.org-input-row .org-compound-input,
|
||||
.org-input-row .org-auth-input-group {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
.org-input-row .org-btn-check, .org-input-row .org-file-label {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.org-input-row {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
gap: 8px;
|
||||
}
|
||||
.org-input-row .org-form-input,
|
||||
.org-input-row .org-compound-input,
|
||||
.org-input-row .org-auth-input-group {
|
||||
width: 100%;
|
||||
}
|
||||
.org-input-row .org-btn-check, .org-input-row .org-file-label {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.org-form-input {
|
||||
width: 100%;
|
||||
@@ -11352,6 +11393,7 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
width: 100%;
|
||||
}
|
||||
.org-compound-input .org-form-input,
|
||||
.org-compound-input .org-form-select {
|
||||
@@ -11366,14 +11408,16 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
color: #64748B;
|
||||
font-weight: 600;
|
||||
user-select: none;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.org-compound-input {
|
||||
flex-wrap: wrap;
|
||||
width: 100%;
|
||||
}
|
||||
.org-compound-input .org-form-input,
|
||||
.org-compound-input .org-form-select {
|
||||
min-width: 80px;
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11483,14 +11527,21 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
|
||||
.org-btn-check, .org-file-label {
|
||||
padding: 16px 24px;
|
||||
background: #FFFFFF;
|
||||
color: #0049b4;
|
||||
border: 2px solid #0049b4;
|
||||
width: 172px;
|
||||
background: #A4D6EA;
|
||||
color: #FFFFFF;
|
||||
border: 2px solid #A4D6EA;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.org-btn-check:not(:disabled):hover, .org-file-label:not(:disabled):hover {
|
||||
background: #0049b4;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.org-btn-check, .org-file-label {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.org-file-upload {
|
||||
display: flex;
|
||||
@@ -11525,6 +11576,9 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
|
||||
.org-file-label {
|
||||
cursor: pointer;
|
||||
background: #3BA4ED;
|
||||
border-radius: 12px;
|
||||
border: 2px solid #3BA4ED;
|
||||
}
|
||||
.org-file-label input[type=file] {
|
||||
display: none;
|
||||
@@ -11571,6 +11625,11 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
padding-top: 48px;
|
||||
border-top: 1px solid #E2E8F0;
|
||||
}
|
||||
.org-action-buttons .btn {
|
||||
width: 220px;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.org-action-buttons {
|
||||
flex-direction: column;
|
||||
@@ -11624,11 +11683,26 @@ input[type=checkbox]:checked + .custom-checkbox {
|
||||
}
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.org-form-input {
|
||||
width: 100%;
|
||||
}
|
||||
.org-compound-input {
|
||||
width: 100%;
|
||||
}
|
||||
.org-compound-input .org-form-select,
|
||||
.org-compound-input .org-form-input {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
width: auto;
|
||||
font-size: 14px;
|
||||
padding: 8px 16px;
|
||||
}
|
||||
.org-auth-input-group {
|
||||
width: 100%;
|
||||
}
|
||||
.org-auth-input-group .org-form-input {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.agreement-form {
|
||||
background: #FFFFFF;
|
||||
|
||||
Reference in New Issue
Block a user