Query table scroll issue fixed (#1464)

* Query table scroll issue fixed

* Table widget horizontal scroll fix
This commit is contained in:
vicky-primathon 2020-10-30 16:18:57 +05:30 committed by Nikhil Nandagopal
parent d652c1485d
commit 0508bbd115

View File

@ -15,7 +15,7 @@ interface TableProps {
const StyledTableWrapped = styled(TableWrapper)`
min-height: 0px;
height: auto;
height: 100%;
.tableWrap {
display: flex;
flex: 1;
@ -24,9 +24,11 @@ const StyledTableWrapped = styled(TableWrapper)`
display: flex;
flex: 1;
flex-direction: column;
height: auto;
height: 100%;
display: table;
width: 100%;
.tbody {
height: auto;
height: 100%;
overflow: auto;
}
}