simple spinner

This commit is contained in:
Geoff Doty 2024-01-19 16:03:46 -05:00
parent ff0943fa18
commit 9e6cb73455
1 changed files with 10 additions and 0 deletions

10
src/spinner.css Normal file
View File

@ -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); }
}