feat(music): Create 탭 트랙 제목 직접 입력 추가

This commit is contained in:
2026-05-01 15:49:56 +09:00
parent 8a7b5e8a38
commit 4281c1873f
2 changed files with 38 additions and 1 deletions

View File

@@ -932,6 +932,27 @@
margin: 0;
}
/* ── Track title input ── */
.ms-title-input-wrap {
padding: 0 24px;
margin-bottom: 12px;
}
.ms-title-input {
width: 100%;
box-sizing: border-box;
background: #1f2937;
border: 1px solid #374151;
border-radius: 8px;
padding: 9px 14px;
color: #ccc;
font-size: 13px;
text-align: center;
}
.ms-title-input::placeholder { color: #4b5563; }
.ms-title-input:focus { outline: none; border-color: var(--ms-accent, #22c55e); }
/* ═══════════════════════════════════════════════════
GENERATE BUTTON
═══════════════════════════════════════════════════ */