From 64050f43bc28106c697cedb4c9291ac6572b4d4e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 8 Apr 2020 10:58:23 -0700 Subject: [PATCH] Fix spinner-grow animation (#30504) * Fix spinner-grow animation Safari seems to be interpreting the old keyframes animation as incomplete. Adding `transform` to the second frame seems to resolve the issue. Co-Authored-By: Martijn Cuppens --- scss/_spinners.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/scss/_spinners.scss b/scss/_spinners.scss index ac4d4c31b8..e8e4c044eb 100644 --- a/scss/_spinners.scss +++ b/scss/_spinners.scss @@ -34,6 +34,7 @@ } 50% { opacity: 1; + transform: none; } } -- 2.47.2