8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
export const genNoMotionStyle = () => {
|
|
return {
|
|
'@media (prefers-reduced-motion: reduce)': {
|
|
transition: 'none',
|
|
animation: 'none'
|
|
}
|
|
};
|
|
}; |