From 9d7d76953ee2ee3a9878d6aa61eec0e7f1817c6f Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Fri, 20 Mar 2026 08:47:27 -0400 Subject: [PATCH] fix: respect prefers-reduced-motion for showcase stagger animation Co-Authored-By: Claude Sonnet 4.6 --- app/static/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/static/style.css b/app/static/style.css index 5b40c6c..2114c33 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -1412,6 +1412,13 @@ header { opacity: 0; /* Start hidden until animation fires */ } +@media (prefers-reduced-motion: reduce) { + .masonry-item.animating-in { + animation: none; + opacity: 1; + } +} + /*------------------------------------------------------------------------------ Forms ------------------------------------------------------------------------------*/