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