Skip to content

Dev -> Main - 2.2.0 hotfixes #565

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: UI issue on horizonal scrollable table
  • Loading branch information
raheeliftikhar5 committed Dec 4, 2023
commit cbdc5809ecb9d05110429d95ebc44fef91f93449
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,10 @@ const TableWrapper = styled.div<{
border-top: none !important;
border-inline-start: none !important;

&::after {
box-shadow: none !important;
}

.ant-table-content {
overflow: unset !important;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,12 @@ const getStyle = (
return css`
background-color: ${style.toolbarBackground};
// Implement horizontal scrollbar and vertical page number selection is not blocked
// padding: ${position === "above" ? "13px 16px 313px 16px" : "313px 16px 13px 16px"};
// margin: ${position === "above" ? "0 0 -300px 0" : "-300px 0 0 0"};
padding: 13px 12px;
${fixedToolbar && `
position: sticky;
postion: -webkit-sticky;
z-index: 99;
`};
position: sticky;
postion: -webkit-sticky;
left: 0;

${fixedToolbar && `z-index: 99;`};
${fixedToolbar && position === 'below' && `bottom: 0;`};
${fixedToolbar && position === 'above' && `top: 0;` };

Expand Down