계좌 페이지 분류

This commit is contained in:
2026-02-26 01:32:49 +09:00
parent c4abdbed3e
commit 3e9112c4c7
2 changed files with 734 additions and 574 deletions

View File

@@ -625,6 +625,101 @@
}
}
/* ── Main Tabs ─────────────────────────────────────────────────────── */
.stock-main-tabs {
display: flex;
gap: 4px;
margin: 0 0 20px;
border-bottom: 1px solid var(--line);
padding-bottom: 0;
}
.stock-main-tab {
position: relative;
display: flex;
align-items: center;
gap: 8px;
padding: 14px 24px;
background: none;
border: none;
color: var(--muted);
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: color 0.25s, background 0.25s;
border-radius: 12px 12px 0 0;
}
.stock-main-tab:hover {
color: var(--fg);
background: rgba(255, 255, 255, 0.04);
}
.stock-main-tab.is-active {
color: var(--fg);
background: rgba(255, 255, 255, 0.06);
}
.stock-main-tab.is-active::after {
content: '';
position: absolute;
bottom: -1px;
left: 12px;
right: 12px;
height: 2px;
background: linear-gradient(90deg, #818cf8, #a78bfa);
border-radius: 2px;
box-shadow: 0 0 8px rgba(129, 140, 248, 0.5);
}
.stock-main-tab__icon {
font-size: 18px;
}
.stock-main-tab__label {
font-weight: 600;
}
.stock-main-tab__badge {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 20px;
height: 20px;
padding: 0 6px;
border-radius: 10px;
background: linear-gradient(135deg, #818cf8, #a78bfa);
color: #fff;
font-size: 11px;
font-weight: 700;
}
.stock-main-tab__sub {
font-size: 11px;
padding: 2px 8px;
border-radius: 8px;
background: rgba(251, 191, 36, 0.15);
color: rgba(251, 191, 36, 0.9);
font-weight: 600;
}
@media (max-width: 520px) {
.stock-main-tab {
padding: 10px 14px;
font-size: 13px;
gap: 4px;
}
.stock-main-tab__icon {
font-size: 15px;
}
.stock-main-tab__label {
font-size: 13px;
}
}
/* ── Portfolio ────────────────────────────────────────────────────── */
.pf-section {

File diff suppressed because it is too large Load Diff