This commit is contained in:
2026-03-14 22:03:51 -05:00
parent ce2f94c17e
commit a6b24a6609
8 changed files with 76 additions and 76 deletions

View File

@@ -31,7 +31,7 @@ export function AppShell() {
key={link.to}
to={link.to}
className={({ isActive }) =>
`block rounded-2xl px-4 py-3 text-sm font-semibold transition ${
`block rounded-2xl px-2 py-2 text-sm font-semibold transition ${
isActive ? "bg-brand text-white" : "text-text hover:bg-page"
}`
}
@@ -53,10 +53,10 @@ export function AppShell() {
</div>
</aside>
<main className="min-w-0 flex-1">
<div className="mb-4 flex items-center justify-between rounded-[28px] border border-line/70 bg-surface/90 px-5 py-4 shadow-panel backdrop-blur 2xl:px-6">
<div className="mb-4 flex items-center justify-between rounded-[28px] border border-line/70 bg-surface/90 px-4 py-3 shadow-panel backdrop-blur 2xl:px-5">
<div>
<p className="text-xs font-semibold uppercase tracking-[0.22em] text-muted">Operations Command</p>
<h2 className="text-2xl font-bold text-text">Foundation Console</h2>
<h2 className="text-xl font-bold text-text">Foundation Console</h2>
</div>
<ThemeToggle />
</div>