마이페이지 스타일 적용

This commit is contained in:
현성필
2025-11-16 12:12:21 +09:00
parent 42100e8a1a
commit e93d2f7a4b
16 changed files with 607 additions and 1014 deletions
+2 -1
View File
@@ -10763,7 +10763,8 @@ select.form-control {
min-width: 180px;
padding-top: 16px;
}
.org-form-label .required {
.org-form-label .required::before {
content: "* ";
color: #FF6B6B;
font-weight: 700;
}
File diff suppressed because one or more lines are too long
-10
View File
@@ -297,16 +297,6 @@ const createCustomSelect = (targetElement, options = {}) => {
};
};
function activateSelect() {
const customSelects = document.querySelectorAll('.custom_select');
customSelects.forEach(select => {
let selector = createCustomSelect(select);
console.log(selector);
});
}
/* 디자인 select box */
// document.addEventListener('DOMContentLoaded',activateSelect);
/* footer */
function adjustLayout() {
@@ -230,8 +230,11 @@
padding-top: $spacing-md;
.required {
color: $accent-orange;
font-weight: $font-weight-bold;
&::before {
content: '* ';
color: $accent-orange;
font-weight: $font-weight-bold;
}
}
@include respond-to('sm') {