feat(lotto): 3탭 구조 재배치(브리핑/분석/구매)

This commit is contained in:
2026-04-15 08:33:08 +09:00
parent bf1c23e66a
commit 064c983ca1
5 changed files with 511 additions and 451 deletions

View File

@@ -1509,3 +1509,13 @@
.briefing-tokens { width: 100%; }
.pick-card-balls { justify-content: center; }
}
/* ── Tab navigation ───────────────────────────────────────────────────────── */
.lotto-tabs { display: flex; gap: 4px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.lotto-tabs button { padding: 8px 16px; background: transparent; border: none; color: #94a3b8; cursor: pointer; border-bottom: 2px solid transparent; }
.lotto-tabs button.active { color: #e2e8f0; border-bottom-color: #818cf8; }
.lotto-tab-body { padding-top: 8px; }
@media (max-width: 768px) {
.lotto-tabs { overflow-x: auto; }
.lotto-tabs button { white-space: nowrap; }
}