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