Created
June 15, 2024 07:26
-
-
Save mohsinworld/e375e1a7ee30f21d3da1d3699c99f7dc to your computer and use it in GitHub Desktop.
Have to add this as custom CSS on that widget
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
selector { | |
display: inline-block; | |
animation: rotate 5s linear infinite; | |
} | |
@keyframes rotate { | |
from { | |
transform: rotate(0deg); | |
} | |
to { | |
transform: rotate(360deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment