index.less 744 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. @import '../../app.less';
  2. .user-table {
  3. table {
  4. width: 100%;
  5. margin-bottom: 10px;
  6. border-bottom: 1px solid #ECEDEE;
  7. .select {
  8. padding-left: 12px;
  9. padding-right: 0;
  10. }
  11. th {
  12. padding: 0 20px;
  13. background: #ECEDEE;
  14. height: 60px;
  15. border: 1px solid #fff;
  16. }
  17. td {
  18. padding: 20px;
  19. }
  20. tbody {
  21. tr:nth-of-type(even) {
  22. background: #FBFBFB;
  23. }
  24. }
  25. }
  26. .empty {
  27. width: 100%;
  28. height: 100px;
  29. line-height: 100px;
  30. text-align: center;
  31. }
  32. .page {
  33. text-align: center;
  34. span {
  35. margin: 0 15px;
  36. display: inline-block;
  37. color: #303139;
  38. b {
  39. color: #4299FF;
  40. font-weight: 500;
  41. }
  42. }
  43. }
  44. }