style: UI refinements — navbar active state, card shadows, action card borders

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Yusuf Suleman
2026-03-30 16:10:06 -05:00
parent 6023ebf9d0
commit 3956140662
4 changed files with 39 additions and 16 deletions

View File

@@ -304,11 +304,18 @@
background: var(--card);
border-radius: var(--radius);
border: 1px solid var(--border);
box-shadow: var(--shadow-md);
box-shadow: var(--shadow-sm);
padding: var(--card-pad);
transition: box-shadow 0.2s ease;
}
.module:hover {
box-shadow: var(--shadow-md);
}
.module.primary {
padding: var(--card-pad-primary);
box-shadow: var(--shadow-md);
}
.module.primary:hover {
box-shadow: var(--shadow-lg);
}
.module.flush { padding: 0; }
@@ -389,7 +396,7 @@
gap: var(--sp-1.5);
}
.tab:hover { color: var(--text-1); background: var(--card-hover); }
.tab.active { color: var(--text-1); background: var(--card); box-shadow: var(--shadow-xs); }
.tab.active { color: var(--accent); background: var(--accent-dim); font-weight: 600; }
.tab-badge {
font-size: var(--text-xs);
@@ -417,6 +424,13 @@
.page { padding: var(--sp-8) 0 var(--sp-20); }
.page-header { margin-bottom: var(--section-gap); }
.page-title {
font-size: var(--text-xl);
font-weight: 600;
color: var(--text-1);
letter-spacing: -0.01em;
line-height: var(--leading-tight);
}
.page-subtitle {
font-size: var(--text-sm);
font-weight: 500;
color: var(--text-3);