| 1234567891011121314151617181920212223242526272829303132 |
- .mtp-table-scroll {
- flex : 1;
- overflow : hidden;
- display : flex;
- flex-direction: column;
- height : 100%;
- &:not(:first-child) {
- margin-top: 2px;
- }
- &__container {
- flex : 1;
- overflow-y: auto;
- }
- .ant-table-wrapper,
- .ant-table-content,
- .ant-table-scroll,
- .ant-table-body {
- height : 100%;
- background-color: transparent !important;
- }
- .ant-table {
- background-color: transparent;
- }
- .ant-table-empty .ant-table-body {
- display: none;
- }
- }
|