Skip to content

Commit 5ad6525

Browse files
authored
Merge pull request #31 from souzip/develop
feat: 수정
2 parents 522d933 + 190c842 commit 5ad6525

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

src/components/admin/NoticeFormModal.vue

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -605,6 +605,41 @@ function onClose() {
605605
padding-top: 8px;
606606
}
607607
608+
/* ─── 푸터 버튼 ─── */
609+
.btn-secondary,
610+
.btn-primary {
611+
padding: 10px 20px;
612+
border-radius: 8px;
613+
font-size: 14px;
614+
font-weight: 500;
615+
cursor: pointer;
616+
transition: all 0.15s;
617+
border: none;
618+
}
619+
620+
.btn-secondary {
621+
background: #f3f4f6;
622+
color: #374151;
623+
}
624+
625+
.btn-secondary:hover {
626+
background: #e5e7eb;
627+
}
628+
629+
.btn-primary {
630+
background: #ff7738;
631+
color: #fff;
632+
}
633+
634+
.btn-primary:hover:not(:disabled) {
635+
background: #e66a32;
636+
}
637+
638+
.btn-primary:disabled {
639+
opacity: 0.5;
640+
cursor: not-allowed;
641+
}
642+
608643
.form-group {
609644
display: flex;
610645
flex-direction: column;

0 commit comments

Comments
 (0)