Skip to content

Instantly share code, notes, and snippets.

@theer1k
Last active December 3, 2023 03:53
Show Gist options
  • Save theer1k/eb80cf74f3049376f0387f8d4cc07327 to your computer and use it in GitHub Desktop.
Save theer1k/eb80cf74f3049376f0387f8d4cc07327 to your computer and use it in GitHub Desktop.
Loading spinner animation SCSS
.loading-spin {
height: 5rem;
width: 5rem;
border: 0.6rem solid green;
border-radius: 50%;
border-top-color: transparent;
animation: spin 0.6s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment