fix: column overlay issue in record table header cells (#6609)

### Issue (BUG)

- Fixes #6604 

### Description

- Now Columns doesn't overlay on header cells, issue was independant of
field type.

#### Before 


https://github.com/user-attachments/assets/0872f07a-83b2-44d8-8f8e-c61c5fac5278

#### After



https://github.com/user-attachments/assets/e2e623f6-6635-4ab6-8ca2-cbd3a296c27d
This commit is contained in:
Nabhag Motivaras
2024-08-12 00:18:31 +05:30
committed by GitHub
parent d5350e11a3
commit b16437e6c8
2 changed files with 4 additions and 0 deletions

View File

@ -33,6 +33,7 @@ const StyledTitle = styled.div<{ hideTitle?: boolean }>`
const StyledIcon = styled.div`
display: flex;
flex-shrink: 0;
& > svg {
height: ${({ theme }) => theme.icon.size.md}px;

View File

@ -60,6 +60,9 @@ const StyledColumnHeaderCell = styled.th<{
}`;
}
}};
div {
overflow: hidden;
}
`;
const StyledResizeHandler = styled.div`