index.less 871 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .app-header {
  2. background-color: @primary-color;
  3. display: flex;
  4. align-items: center;
  5. justify-content: flex-end;
  6. .header-user {
  7. display: flex;
  8. align-items: center;
  9. gap: 4px;
  10. cursor: pointer;
  11. .header-user-name {
  12. color: white;
  13. font-size: 14px;
  14. }
  15. }
  16. }
  17. .ant-pro-page-container-children-container-no-header {
  18. padding: unset !important;
  19. }
  20. .page-box {
  21. height: calc(100vh - 160px);
  22. display: flex;
  23. flex-direction: column;
  24. }
  25. .table-box {
  26. flex: 1;
  27. overflow: hidden;
  28. padding: 10px 20px 20px;
  29. .ant-pro-card-body {
  30. .ant-spin-container {
  31. height: calc(100vh - 360px);
  32. overflow: auto;
  33. }
  34. margin: 16px;
  35. .ant-list-items {
  36. display: flex;
  37. flex-wrap: wrap;
  38. gap: 30px;
  39. > div {
  40. flex: 0 0 calc(25% - 23px);
  41. }
  42. }
  43. }
  44. }