From 59e8cbf3daa583b754b459b8d2220db9e7a4a68e Mon Sep 17 00:00:00 2001 From: jake Date: Tue, 17 Mar 2026 02:19:04 +0000 Subject: [PATCH] =?UTF-8?q?feat(kon):=20add=20prefers-reduced-motion=20sup?= =?UTF-8?q?port=20=E2=80=94=20disables=20all=20animations=20globally?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- src/app.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/app.css b/src/app.css index 8f49a67..9fd5396 100644 --- a/src/app.css +++ b/src/app.css @@ -294,3 +294,14 @@ html.light .animate-glow-pulse { } /* Recording indicator dot (follows mouse via JS, see +layout.svelte) */ + +/* === Reduced Motion === */ +@media (prefers-reduced-motion: reduce) { + *, + *::before, + *::after { + animation-duration: 0.01ms !important; + animation-iteration-count: 1 !important; + transition-duration: 0.01ms !important; + } +}