bulma/sass/base/animations.scss

10 lines
111 B
SCSS
Raw Normal View History

2022-11-23 17:44:02 +00:00
@keyframes spinAround {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}