From 5f15f8cdbd600569cb4b497085f009fff9d68065 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 364a5c1a65f7..27c9241a7904 100644 --- a/scss/_spinners.scss +++ b/scss/_spinners.scss @@ -34,6 +34,7 @@ } 50% { opacity: 1; + transform: none; } }