Remove css prefixes from mixins
This commit is contained in:
parent
cb41972e7d
commit
3f8f7d4f87
|
@ -2,8 +2,8 @@
|
|||
* _animation.scss
|
||||
* Custom WooCommerce Animations.
|
||||
*/
|
||||
@include keyframes( spin ) {
|
||||
@keyframes spin {
|
||||
100% {
|
||||
@include transform( rotate( 360deg ) );
|
||||
transform: rotate( 360deg );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -259,7 +259,7 @@
|
|||
margin-left: -0.5em;
|
||||
margin-top: -0.5em;
|
||||
content: '';
|
||||
@include animation( spin 1s ease-in-out infinite );
|
||||
animation: spin 1s ease-in-out infinite;
|
||||
background: url('../images/icons/loader.svg') center center;
|
||||
background-size: cover;
|
||||
line-height: 1;
|
||||
|
|
Loading…
Reference in New Issue