fix(workout): make reduced motion explicit

Add an explicit prefers-reduced-motion contract to the phone-first Workout starter and assert the served CSS carries the no-motion policy.

req: examples/001
This commit is contained in:
slhx agent
2026-06-12 15:51:39 +02:00
parent be3ba4877a
commit 3f824a83f8
2 changed files with 13 additions and 0 deletions
+11
View File
@@ -270,3 +270,14 @@
}
}
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
scroll-behavior: auto !important;
transition-duration: 0ms !important;
animation-duration: 0ms !important;
animation-iteration-count: 1 !important;
}
}