모의투자 로직 변경

This commit is contained in:
Macbook
2026-05-31 14:05:46 +09:00
parent ead97dad5d
commit d6eedf19bb
33 changed files with 1456 additions and 330 deletions
+38
View File
@@ -12974,3 +12974,41 @@ html.theme-light .tam-disclaimer { color: #90a4ae; }
.app-download-ios-note {
margin-top: 12px; font-size: 11px; color: var(--text3); line-height: 1.45;
}
/* ── 정식 로그인 유도 (게스트·매매 기능) ─────────────────────────────────── */
.formal-login-gate {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: calc(100vh - 48px);
padding: 32px 24px;
text-align: center;
background: var(--bg);
}
.formal-login-gate__title {
margin: 0 0 12px;
font-size: 20px;
font-weight: 700;
color: var(--text);
}
.formal-login-gate__desc {
margin: 0 0 24px;
max-width: 420px;
font-size: 14px;
line-height: 1.55;
color: var(--text2);
}
.formal-login-gate__btn {
padding: 12px 28px;
border: none;
border-radius: 10px;
background: linear-gradient(135deg, #8b5cf6, #7c3aed);
color: #fff;
font-size: 15px;
font-weight: 600;
cursor: pointer;
}
.formal-login-gate__btn:hover {
filter: brightness(1.06);
}