메일송신 mailJS , 영/한 전환 적용ㅁ

This commit is contained in:
Wind
2026-02-15 11:12:43 +09:00
parent 6e9a7ed81b
commit a0a212e41c
43 changed files with 6713 additions and 536 deletions

View File

@@ -37,3 +37,17 @@ body {
transform: scale(1.1);
filter: grayscale(0);
}
/* ── 언어 전환 버튼 ───────────────────────────────────────── */
.lang-btn {
background: transparent;
opacity: 0.5;
transition: all 0.2s;
}
.lang-btn:hover {
opacity: 0.8;
}
.lang-btn.active-lang {
background: #2563eb;
opacity: 1;
}