| 1 | // 定义一个 SCSS 混合,包含选择器和样式 |
| 2 | @mixin table-flex-container-with-selectors { |
| 3 | .ant-table-wrapper, |
| 4 | .ant-spin-nested-loading, |
| 5 | .ant-table, |
| 6 | .ant-table-container, |
| 7 | .ant-table-body, |
| 8 | .ant-spin-container { |
| 9 | display: flex; |
| 10 | flex-direction: column; |
| 11 | min-height: 0; |
| 12 | height: 100%; |
| 13 | max-height: none !important; |
| 14 | } |
| 15 | } |