From 63137a53d947f5f10cc998abc572379349e04a7c Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Fri, 8 Nov 2024 09:57:28 +0000 Subject: [PATCH] Use prefers-reduced-motion --- src/room/InCallView.module.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/room/InCallView.module.css b/src/room/InCallView.module.css index 0015cf20..981db007 100644 --- a/src/room/InCallView.module.css +++ b/src/room/InCallView.module.css @@ -169,3 +169,15 @@ Please see LICENSE in the repository root for full details. scale: 100%; } } + +@media (prefers-reduced-motion) { + @keyframes reaction-up { + from { + opacity: 1; + } + + to { + opacity: 0; + } + } +}