Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions public/proto/home-v5.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,14 @@
/* ─── Main (single column) ─── */
.m { max-width: 720px; margin: 0 auto; padding: 24px calc(20px + var(--safe-right)) calc(80px + var(--safe-bot)) calc(20px + var(--safe-left)); }
@media (min-width: 900px) { .m { max-width: 760px; } }
/* Cohesive first-paint entrance — the event room "settles" up instead of popping
into final position. TRANSFORM-ONLY (no opacity) so content is NEVER hidden:
if the animation is throttled (background tab) or unsupported, the content is
fully visible, merely offset a few px. The feed's per-row feedRowIn plays on
top for a composed, layered reveal. Landing mode has its own entrance. */
@keyframes pageEnter { from { transform: translateY(10px); } to { transform: none; } }
body:not([data-page-mode="landing"]) main.m { animation: pageEnter var(--motion-slow) var(--ease-out) both; }
@media (prefers-reduced-motion: reduce) { main.m { animation: none; } }

@augmentcode augmentcode Bot Jun 2, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@media (prefers-reduced-motion: reduce) { main.m { animation: none; } } may not actually disable the entrance animation because the animated rule (body:not([data-page-mode="landing"]) main.m) has higher selector specificity, so it can win in the cascade even under reduced motion.

Severity: medium

Other Locations
  • public/proto/home-v5.html:173

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.


/* ─── Hero (small, scannable) ─── */
.hero { margin-bottom: 20px; }
Expand Down
Loading