Skip to content

Instantly share code, notes, and snippets.

@mohsinworld
Created June 15, 2024 07:26
Show Gist options
  • Save mohsinworld/e375e1a7ee30f21d3da1d3699c99f7dc to your computer and use it in GitHub Desktop.
Save mohsinworld/e375e1a7ee30f21d3da1d3699c99f7dc to your computer and use it in GitHub Desktop.
Have to add this as custom CSS on that widget
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