Text will start animating over button i want it should not be on top of button. I have added overflow:hidden but it is not working as it should.
demo: https://stackblitz.com/edit/angular-wetmep?file=src%2Fapp%2Fapp.component.html
animations: [
trigger('onOff', [
transition(':enter', [style({
opacity: 0,
transform: 'translateY(-100%)'
}),
animate(400)
])
])
]