Query table scroll issue fixed (#1464)
* Query table scroll issue fixed * Table widget horizontal scroll fix
This commit is contained in:
parent
634d294578
commit
b74bec311e
|
|
@ -29,6 +29,8 @@ export const TableWrapper = styled.div<{
|
|||
color: ${Colors.THUNDER};
|
||||
position: relative;
|
||||
background: ${Colors.ATHENS_GRAY_DARKER};
|
||||
display: table;
|
||||
width: 100%;
|
||||
.thead,
|
||||
.tbody {
|
||||
overflow: hidden;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user