I was adding adding box-shadow on hover of row, but sticky doesn't show box shadow as non-sticky cell have box shadow
.mat-row:hover {
background: #d00e0eec;
height: 2.125rem;
box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.10) !important;
position: relative;
}
ID and Project Name is sticky column.
EDIT 1: Here I'm using Angular Material table. I made the row position relative because I couldn't apply a box shadow to the table row. After that, the box shadow appeared.
Now I wanted to make the first column sticky, so I did. Now that the sticky column has been added, now box shadow doesn't appears on sticky column rows.
