index.less 361 B

1234567891011121314151617181920212223242526272829
  1. @import '../../app.less';
  2. .table {
  3. .td,
  4. .th {
  5. display: inline-block;
  6. vertical-align: middle;
  7. }
  8. .tr {
  9. border-bottom: 1px solid @line_color;
  10. .th {
  11. height: 44px;
  12. line-height: 44px;
  13. }
  14. }
  15. .tr:last-child {
  16. border-bottom: none;
  17. }
  18. .empty {
  19. height: 100px;
  20. line-height: 100px;
  21. text-align: center;
  22. }
  23. }