trigger('fadeInOut', [
transition(':enter', [style({
width: '59px',
border: 'none',
}),
animate(3000, style({
width: '*',
border: 'solid 1px #ebebeb',
}))],
),
transition(':leave', [
animate(3000, style({
width: '59px',
border: 'none',
}))],
),
])