Skip to content

Commit

Permalink
Styles: Add new animated class and file 'loading-icon.scss'
Browse files Browse the repository at this point in the history
  • Loading branch information
ITurres committed Mar 5, 2024
1 parent e48e55d commit 2df9c93
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/styles/animations/loading-icon.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.loading-icon {
animation: spin 1s linear infinite;
-webkit-animation: spin 1s linear infinite; // * Safari and Chrome.
-moz-animation: spin 1s linear infinite; // * Firefox.
-o-animation: spin 1s linear infinite; // * Opera.

@keyframes spin {
from {
transform: rotate(0deg);
}

to {
transform: rotate(360deg);
}
}
}

0 comments on commit 2df9c93

Please sign in to comment.