10 lines
123 B
SCSS
10 lines
123 B
SCSS
|
/**
|
||
|
* _animation.scss
|
||
|
* Custom WooCommerce Animations.
|
||
|
*/
|
||
|
@keyframes spin {
|
||
|
100% {
|
||
|
transform: rotate( 360deg );
|
||
|
}
|
||
|
}
|