@lxlib/theme
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.
13 lines (11 loc) • 384 B
text/less
// router ant
@router-animation-name: antFadeIn;
@router-animation-duration: 1s;
// A simple implementation of a route switching animation
// ISSUES: https://github.com/angular/angular/issues/9845
app-layout router-outlet + * {
display: block;
// animation-fill-mode: both;
animation-name: @router-animation-name; // fadeIn;
animation-duration: @router-animation-duration;
}