8 lines
177 B
CSS
8 lines
177 B
CSS
.cart-item.ng-enter {
|
|
-webkit-transition:0.5s linear all;
|
|
transition:0.5s linear all;
|
|
background-color: yellow;
|
|
}
|
|
.cart-item.ng-enter-active {
|
|
background-color: white;
|
|
} |