index.less 412 B

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