fix: table border issue fix (#18339) (#19967)

Added a bottom border to the entire table header div element
This commit is contained in:
Vemparala Surya Vamsi 2023-01-27 12:15:44 +05:30 committed by GitHub
parent 506b0230d5
commit f9e58f2ad0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,6 @@ export const TableIconWrapper = styled.div<{
white-space: nowrap;
color: ${(props) => props.titleColor || Colors.GRAY};
}
border-bottom: 1px solid ${Colors.GEYSER_LIGHT};
position: relative;
margin-left: 5px;
padding: 0 5px;

View File

@ -508,6 +508,7 @@ export const TableHeaderWrapper = styled.div<{
}>`
position: relative;
display: flex;
border-bottom: 1px solid ${Colors.GEYSER_LIGHT};
width: ${(props) => props.width - 8}px;
.show-page-items {
display: ${(props) => (props.width < 700 ? "none" : "flex")};