ignore prefers-reduced-motion for resize handle line delay

This commit is contained in:
Evan Simkowitz 2024-08-30 12:52:02 -07:00
parent 86d6c5cd60
commit cb664cff41
No known key found for this signature in database

View File

@ -62,7 +62,10 @@
}
&:hover .line {
visibility: visible;
transition: visibility 0s var(--animation-time-s);
// Ignore the prefers-reduced-motion override, since we are not applying a true animation here, just a delay.
transition-property: visibility !important;
transition-delay: var(--animation-time-s) !important;
}
}