From c1898d0db7b080ff823682dd4031e6af78439b4f Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Tue, 3 Aug 2021 16:20:32 -0400 Subject: [PATCH] Fix rotating animations on popup --- public/popup.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/popup.css b/public/popup.css index 444039dc..4398eaa4 100644 --- a/public/popup.css +++ b/public/popup.css @@ -318,6 +318,11 @@ label>p, #disableExtension>p, #usernameValue, #usernameElement > div > p,#sponso transform: rotate(45deg); } +@keyframes rotate { + from { transform: rotate(0deg); } + to { transform: rotate(360deg); } +} + .SBWhitelistIconContainer, button#optionsButton { display: flex; align-items: center;