Last active
December 3, 2023 03:53
-
-
Save theer1k/eb80cf74f3049376f0387f8d4cc07327 to your computer and use it in GitHub Desktop.
Loading spinner animation SCSS
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
.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