Can anyone help me find the bug in my code? I am struggling to identify it. I have a grid container component that contains child grid item components generated by *ngFor. Each child component has two inputs:
- An object named rfpDoc
- featured: Boolean (I'm using larger text to style the featured item).
The CSS hover animation is working for all child components (image zooms with overflow hidden) except for the first child component, which is also the featured item. When I hover over that component, all child components zoom and overflow the grid container. Any idea why this is happening?
Here is the Stack Blitz URL for reference. Please note that when the largest grid item is hovered over, it expands the grid and somehow zooms the sibling components. Other individual grid item components do not behave the same when hovered over.