fix: polish sidebar and masthead chrome, scroll setup preflight (#1522)

Remove redundant nav and label dots, move desktop masthead status to animated left rails, and let AuthCanvas scroll long preflight content on small viewports.
This commit is contained in:
Anso
2026-06-29 20:29:06 -04:00
committed by GitHub
parent da73ee0717
commit 322d337d20
8 changed files with 51 additions and 59 deletions
+10
View File
@@ -716,6 +716,10 @@ body {
0% { transform: translateY(-100%); }
100% { transform: translateY(200%); }
}
@keyframes masthead-rail-glow {
0%, 100% { opacity: 0.55; box-shadow: inset 0 0 0 0 transparent; }
50% { opacity: 1; box-shadow: inset 0 0 10px 0 oklch(1 0 0 / 0.12); }
}
/* ─────────────────────────────────────────────────────────────
ANIMATION UTILITIES
@@ -738,6 +742,12 @@ body {
.animate-shimmer {
animation: shimmer 4.5s ease-in-out infinite alternate;
}
.masthead-rail-shimmer {
animation: shimmer 11s ease-in-out infinite alternate;
}
.masthead-rail-glow {
animation: masthead-rail-glow 5.5s ease-in-out infinite alternate;
}
/* Stagger delay helpers */
.animate-delay-50 { animation-delay: 50ms; }