You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
184 B

4 years ago
  1. .page{
  2. &.ng-leave {
  3. .opacity(0);
  4. }
  5. &.ng-enter {
  6. transition: 1s linear all;
  7. .opacity(0);
  8. &.ng-enter-active{
  9. .opacity(1);
  10. }
  11. }
  12. }