diff options
author | Ajay Ramachandran <[email protected]> | 2021-08-03 16:20:32 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2021-08-03 16:20:32 -0400 |
commit | c1898d0db7b080ff823682dd4031e6af78439b4f (patch) | |
tree | f134cc05342f9c9b15aa4802482026b800d6bd77 | |
parent | e9e311454960684a2cfc119271f377ad5118fce5 (diff) | |
download | SponsorBlock-c1898d0db7b080ff823682dd4031e6af78439b4f.tar.gz SponsorBlock-c1898d0db7b080ff823682dd4031e6af78439b4f.zip |
Fix rotating animations on popup
-rw-r--r-- | public/popup.css | 5 |
1 files changed, 5 insertions, 0 deletions
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; |