From: Mark Otto Date: Wed, 8 Apr 2020 17:58:23 +0000 (-0700) Subject: Fix spinner-grow animation (#30504) X-Git-Tag: v5.0.0-alpha1~254 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64050f43bc28106c697cedb4c9291ac6572b4d4e;p=thirdparty%2Fbootstrap.git 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 --- 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; } }