Release v2.1.9: Immersive onboarding and UX transformation

This commit is contained in:
g1nation
2026-05-14 22:39:13 +09:00
parent 6b10d002fa
commit d9d89e6db7
15 changed files with 349 additions and 113 deletions
+64 -3
View File
@@ -918,9 +918,70 @@
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.welcome { text-align: center; padding: 40px 20px; color: var(--text-dim); }
.welcome-logo { font-size: 48px; color: var(--accent); margin-bottom: 16px; opacity: 0.8; }
.welcome-title { font-size: 20px; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.welcome { text-align: center; padding: 36px 18px 24px; color: var(--text-dim); }
.welcome-logo { font-size: 44px; color: var(--accent); margin-bottom: 12px; opacity: 0.85; }
.welcome-title { font-size: 18px; font-weight: 700; color: var(--text-bright); margin-bottom: 6px; }
.welcome-lead { font-size: 12px; color: var(--text-dim); margin: 0 auto 18px; max-width: 360px; line-height: 1.55; }
/* 시작 체크리스트 — 신규 사용자에게만 노출 */
.welcome-checklist {
display: flex; flex-direction: column; gap: 10px;
max-width: 420px; margin: 0 auto;
text-align: left;
}
.wc-step {
display: flex; align-items: flex-start; gap: 12px;
padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px;
background: var(--surface);
}
.wc-step.done { opacity: 0.55; }
.wc-bullet {
flex-shrink: 0;
width: 22px; height: 22px; border-radius: 50%;
display: inline-flex; align-items: center; justify-content: center;
font-size: 11px; font-weight: 700;
background: var(--bg-secondary); color: var(--text-dim);
border: 1px solid var(--border);
}
.wc-step.done .wc-bullet {
background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.wc-text { flex: 1; min-width: 0; }
.wc-label { color: var(--text-bright); font-weight: 600; font-size: 12.5px; }
.wc-hint { color: var(--text-dim); font-size: 10.5px; margin-top: 2px; line-height: 1.45; }
.wc-action {
flex-shrink: 0; align-self: center;
font-size: 10.5px; padding: 5px 11px;
background: var(--accent); color: var(--bg);
border: 0; border-radius: 6px; cursor: pointer; font-weight: 600;
}
.wc-action:hover { filter: brightness(1.1); }
/* 준비된 사용자용 예시 질문 chip */
.welcome-chips {
display: flex; flex-direction: column; gap: 8px;
max-width: 420px; margin: 0 auto 14px;
}
.welcome-chip {
display: flex; align-items: center; gap: 10px;
padding: 9px 12px; border: 1px solid var(--border); border-radius: 10px;
background: var(--surface); color: var(--text-primary);
font-size: 12px; text-align: left; cursor: pointer;
line-height: 1.45; transition: 0.15s;
}
.welcome-chip:hover {
border-color: var(--accent); color: var(--text-bright);
background: var(--bg-secondary);
}
.welcome-chip-emoji { font-size: 16px; flex-shrink: 0; }
.welcome-chip-text { flex: 1; min-width: 0; }
.welcome-tips {
margin-top: 16px; font-size: 10.5px; color: var(--text-dim);
max-width: 420px; margin-left: auto; margin-right: auto;
line-height: 1.55;
}
.welcome-tips b { color: var(--text-bright); font-weight: 600; }
/* --- History List --- */
.history-item {