logoalt Hacker News

fuelingcurioustoday at 5:25 PM2 repliesview on HN

Ah interesting, I have playtested on safari, chrome, and edge. I’ll have to look into what’s unique there. Thank you!


Replies

cameron_btoday at 5:38 PM

Up-to-date Firefox on Linux allowed me to complete certification of a shipment of Jet fuel, no trouble all the way through.

Great concept and execution.

show 1 reply
joeframbachtoday at 7:28 PM

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.
show 1 reply