MultipleSelectTable.less 529 B

1234567891011121314151617181920212223242526272829303132
  1. @import "~antd/lib/style/themes/default.less";
  2. .container {
  3. .tableWrapper {
  4. }
  5. .buttonWrapper {
  6. height: 50px;
  7. line-height: 50px;
  8. text-align: center;
  9. vertical-align: middle;
  10. border-top: 2px dashed #eee;
  11. margin-top: 10px;
  12. }
  13. }
  14. .table {
  15. :global {
  16. .ant-table-wrapper {
  17. height: 300px;
  18. }
  19. .ant-table-tbody > tr > td {
  20. padding: 5px;
  21. }
  22. .ant-table-thead > tr > th {
  23. padding: 10px 5px;
  24. }
  25. .ant-table-footer {
  26. height: 46px;
  27. padding: 5px;
  28. }
  29. }
  30. }