feat(portal): add SSR operations and exclusive groups
CI / validate (push) Successful in 5m20s
Release / release (push) Successful in 6m56s

This commit is contained in:
dmg
2026-08-01 19:21:23 -04:00
parent b88097c15a
commit b7c0083647
45 changed files with 2245 additions and 363 deletions
+22 -1
View File
@@ -19,7 +19,7 @@
--ink: #171916;
--muted: #57594f;
--line: #9e9a88;
--accent: #bc3f24;
--accent: #a32f1b;
--signal: #b5d452;
--shadow: #262a23;
}
@@ -37,6 +37,27 @@ body {
background: var(--canvas);
}
:focus-visible {
outline: 3px solid var(--accent);
outline-offset: 3px;
}
.skip-link {
position: fixed;
left: 1rem;
top: 1rem;
z-index: 100;
transform: translateY(-200%);
background: var(--ink);
color: var(--panel);
padding: 0.75rem 1rem;
font-weight: 700;
}
.skip-link:focus {
transform: translateY(0);
}
::selection {
background: var(--accent);
color: var(--panel);