simple spinner
This commit is contained in:
parent
ff0943fa18
commit
9e6cb73455
|
@ -0,0 +1,10 @@
|
|||
.spinner {
|
||||
display: inline-block;
|
||||
padding: 0.5rem;
|
||||
color: var(--theme, inherit);
|
||||
animation: spin 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to { -webkit-transform: rotate(360deg); }
|
||||
}
|
Loading…
Reference in New Issue