aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2020-04-08 10:58:23 -0700
committerGitHub <[email protected]>2020-04-08 20:58:23 +0300
commit64050f43bc28106c697cedb4c9291ac6572b4d4e (patch)
tree547a2c08a52438f3040d91c2d73e10312f8be303
parentbfbf265a50a7ffe252324ea53272090ec12ae933 (diff)
downloadbootstrap-64050f43bc28106c697cedb4c9291ac6572b4d4e.tar.xz
bootstrap-64050f43bc28106c697cedb4c9291ac6572b4d4e.zip
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 <[email protected]>
-rw-r--r--scss/_spinners.scss1
1 files changed, 1 insertions, 0 deletions
diff --git a/scss/_spinners.scss b/scss/_spinners.scss
index ac4d4c31b..e8e4c044e 100644
--- a/scss/_spinners.scss
+++ b/scss/_spinners.scss
@@ -34,6 +34,7 @@
}
50% {
opacity: 1;
+ transform: none;
}
}