From 4da5b97847303968b81c34f6bccf1f7dcadd5cd6 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Wed, 27 Sep 2023 10:16:27 -0500 Subject: [PATCH] Tweak rotation animation for safari --- tailwind.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 8d03412d..f701b311 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -30,9 +30,9 @@ module.exports = { }, keyframes: { 'rotate-pulse': { - '0%': { rotate: '0deg', scale: '1' }, - '50%': { rotate: '180deg', scale: '0.8' }, - '100%': { rotate: '360deg', scale: '1' }, + '0%': { transform: 'rotate(0deg) scale(1)' }, + '50%': { transform: 'rotate(180deg) scale(0.8)' }, + '100%': { transform: 'rotate(360deg) scale(1)' }, }, }, },