Hi team:wave:, I have fixed issue: <#2999> and rai...
# contributing
s
Hi team👋, I have fixed issue: #2999 and raised the PR #4115 (original scroll fix) following up on that, I am working on making email field sticky, which is in place now, but I'm running into a small issue with preserving the hover style on the sticky column. The sticky positioning works, but the hover effect isn’t being preserved as expected. I suspect the issue is somehow the bg becomes transparent on hover or not correctly overriding the default. Here's what I've done:
Copy code
.table-field-sticky {
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: var(--surface-background-color);
}

// .table-hover .table-field-sticky{
//     position: sticky;
//     left: 0;
//     z-index: 1;
//    background-color: rgba(colors.$gray4, 0.05);
// }

.dark .table-field-sticky {
  background-color: var(--color-panel-solid);
Do checkout video for more context. If anyone has a pointer or suggestion, I'd really appreciate the help 🙏
Behaviour after uncommenting the commented code: (bcz of 0.05 opacity)