10 lines
206 B
CSS
10 lines
206 B
CSS
|
.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); }
|
||
|
}
|