Change to resolve conflicts with master branch (#1530)

This commit is contained in:
vicky-primathon 2020-11-03 14:46:35 +05:30 committed by GitHub
parent 936ddc4fa0
commit 25e8d17108
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,8 @@ export const TableWrapper = styled.div`
justify-content: space-between; justify-content: space-between;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
min-height: 0px;
height: 100%;
.tableWrap { .tableWrap {
height: 100%; height: 100%;
display: block; display: block;
@ -38,6 +40,10 @@ export const TableWrapper = styled.div`
color: ${Colors.THUNDER}; color: ${Colors.THUNDER};
position: relative; position: relative;
background: ${Colors.ATHENS_GRAY_DARKER}; background: ${Colors.ATHENS_GRAY_DARKER};
display: flex;
flex: 1;
flex-direction: column;
height: 100%;
display: table; display: table;
width: 100%; width: 100%;
.thead, .thead,
@ -45,8 +51,8 @@ export const TableWrapper = styled.div`
overflow: hidden; overflow: hidden;
} }
.tbody { .tbody {
overflow-y: scroll; height: 100%;
height: auto; overflow: auto;
.tr { .tr {
width: 100%; width: 100%;
} }