5 lines
89 B
SCSS
5 lines
89 B
SCSS
|
@keyframes spin {
|
||
|
0% { transform: rotate(0deg); }
|
||
|
to { transform: rotate(1turn); }
|
||
|
}
|