11 lines
273 B
Sass
11 lines
273 B
Sass
// spin-rotate is currently used when clicked on a section-element in a section view
|
|
.spin-rotate
|
|
//animation(spinRotate 2s)
|
|
animation-name: spinRotate
|
|
animation-duration: 2s
|
|
@keyframes spinRotate
|
|
from
|
|
transform: rotate(0deg)
|
|
to
|
|
transform: rotate(360deg)
|