add reduced-motion override

This commit is contained in:
Madison 2026-07-17 01:50:27 -05:00
parent efdbe6fc6b
commit 8c40e6bb00
2 changed files with 9 additions and 1 deletions

View File

@ -464,11 +464,19 @@ body:has(.show-site-loading-indicator) .site-loading-indicator {
}
}
.walkthrough-pulse-ring {
animation: walkthrough-pulse-ring 1.4s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) {
.data-grid-export-progress-shimmer {
animation: none;
transform: translateX(75%);
}
.walkthrough-pulse-ring {
animation: none;
}
}

View File

@ -15,7 +15,7 @@ export function MockCursor({
className={cn(
"absolute -top-1 -left-1 h-8 w-8 rounded-full",
"border-2 border-blue-500",
"animate-[walkthrough-pulse-ring_1.4s_ease-out_infinite]",
"walkthrough-pulse-ring",
)}
aria-hidden
/>