diff --git a/front/src/components/table/Table.tsx b/front/src/components/table/Table.tsx index c6c86287db..905cb71a07 100644 --- a/front/src/components/table/Table.tsx +++ b/front/src/components/table/Table.tsx @@ -21,7 +21,8 @@ type OwnProps = { }; const StyledTable = styled.table` - min-width: calc(100% - ${(props) => props.theme.spacing(4)}); + min-width: 1000px; + width: calc(100% - ${(props) => props.theme.spacing(4)}); border-radius: 4px; border-spacing: 0; border-collapse: collapse; @@ -61,6 +62,13 @@ const StyledTableWithHeader = styled.div` display: flex; flex-direction: column; flex: 1; + width: 100%; +`; + +const StyledTableScrollableContainer = styled.div` + overflow: auto; + height: 100%; + flex: 1; `; function Table({ @@ -85,58 +93,64 @@ function Table({ onSortsUpdate={onSortsUpdate} sortsAvailable={sortsAvailable || []} /> - - - {table.getHeaderGroups().map((headerGroup) => ( - - {headerGroup.headers.map((header) => ( - - {header.isPlaceholder - ? null - : flexRender( - header.column.columnDef.header, - header.getContext(), - )} - - ))} - - ))} - - - {table.getRowModel().rows.map((row, index) => ( - - {row.getVisibleCells().map((cell) => { - return ( - - {flexRender(cell.column.columnDef.cell, cell.getContext())} - - ); - })} - - ))} - - {table - .getFooterGroups() - .flatMap((group) => group.headers) - .filter((header) => !!header.column.columnDef.footer).length > 0 && ( - - {table.getFooterGroups().map((footerGroup) => ( - - {footerGroup.headers.map((header) => ( + + + + {table.getHeaderGroups().map((headerGroup) => ( + + {headerGroup.headers.map((header) => ( {header.isPlaceholder ? null : flexRender( - header.column.columnDef.footer, + header.column.columnDef.header, header.getContext(), )} ))} ))} - - )} - + + + {table.getRowModel().rows.map((row, index) => ( + + {row.getVisibleCells().map((cell) => { + return ( + + {flexRender( + cell.column.columnDef.cell, + cell.getContext(), + )} + + ); + })} + + ))} + + {table + .getFooterGroups() + .flatMap((group) => group.headers) + .filter((header) => !!header.column.columnDef.footer).length > + 0 && ( + + {table.getFooterGroups().map((footerGroup) => ( + + {footerGroup.headers.map((header) => ( + + {header.isPlaceholder + ? null + : flexRender( + header.column.columnDef.footer, + header.getContext(), + )} + + ))} + + ))} + + )} + + ); } diff --git a/front/src/layout/AppLayout.tsx b/front/src/layout/AppLayout.tsx index 8386dbeb39..e8ac2f1ff9 100644 --- a/front/src/layout/AppLayout.tsx +++ b/front/src/layout/AppLayout.tsx @@ -16,6 +16,7 @@ const StyledRightContainer = styled.div` display: flex; flex-direction: row; flex: 1; + overflow: hidden; `; type OwnProps = { diff --git a/front/src/layout/containers/WithTopBarContainer.tsx b/front/src/layout/containers/WithTopBarContainer.tsx index fce239b2ec..2749ca0b52 100644 --- a/front/src/layout/containers/WithTopBarContainer.tsx +++ b/front/src/layout/containers/WithTopBarContainer.tsx @@ -12,6 +12,7 @@ const StyledContainer = styled.div` display: flex; flex: 1; flex-direction: column; + overflow: hidden; `; const ContentContainer = styled.div` @@ -21,6 +22,7 @@ const ContentContainer = styled.div` flex: 1; padding-right: ${(props) => props.theme.spacing(3)}; padding-bottom: ${(props) => props.theme.spacing(3)}; + width: calc(100% - ${(props) => props.theme.spacing(3)}); `; const ContentSubContainer = styled.div`