logoalt Hacker News

joeframbachyesterday at 7:28 PM1 replyview on HN

I figured out why it wouldn't work on my machine:

    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
With reduced-motion enabled (which is basically required in Tahoe :eyeroll:), animations complete immediately and there is no chance to click the salt/water.

Replies

fuelingcuriousyesterday at 7:54 PM

Ah! Tried to add an accessibility feature and broke it! I’ll see what I can do to find a better middle ground.