leaf-framework
Version:
Light Everis Angular Frontend Framework
9 lines • 552 B
JavaScript
// import the required animation functions from the angular animations module
import { trigger, animate, transition, style } from '@angular/animations';
export var navUserItemEnter = trigger('navUserItemEnter', [
transition(':enter', [
style({ 'max-height': 0, 'padding-top': '0px', 'padding-bottom': '0px', overflow: 'hidden' }),
animate('0.5s ease-out', style({ 'max-height': 190, 'padding-top': '33px', 'padding-bottom': '33px', overflow: 'hidden' }))
]),
]);
//# sourceMappingURL=nav-user-item-enter.animation.js.map