From 231730a2ffd0f634fe949d8b4f78edb60639cf92 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Mon, 17 Nov 2025 12:13:01 -0600 Subject: [PATCH 1/4] fix(loader): respect prefers-reduced-motion --- src/sentry/templates/sentry/partial/loader.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/sentry/templates/sentry/partial/loader.html b/src/sentry/templates/sentry/partial/loader.html index 5b1c8bc0a37a9f..69c94019bdf078 100644 --- a/src/sentry/templates/sentry/partial/loader.html +++ b/src/sentry/templates/sentry/partial/loader.html @@ -37,6 +37,12 @@ stroke-dashoffset: -1150; } } + @media (prefers-reduced-motion: reduce) { + path { + animation: none; + stroke-dashoffset: 0; + } + }