index.less 663 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @gray_text_1: rgba(0, 0, 0, 0.85);
  2. .dashboard-card-wrap {
  3. display: flex;
  4. flex-direction: column;
  5. width: 100%;
  6. height: 100%;
  7. background-color: #fff;
  8. padding: 15px;
  9. border-radius: 5px;
  10. }
  11. .dashboard-card-header {
  12. display: flex;
  13. flex-shrink: 0;
  14. flex-grow: 0;
  15. align-items: center;
  16. margin-bottom: 10px;
  17. color: @gray_text_1;
  18. }
  19. .dashboard-card-header .dashboard-card-header-left {
  20. flex: 1;
  21. }
  22. .dashboard-card-header .dashboard-card-header-right {
  23. flex-shrink: 0;
  24. flex-grow: 0;
  25. }
  26. .dashboard-card-body {
  27. flex: 1;
  28. display: flex;
  29. }
  30. .dashboard-fco-wrap {
  31. height: 100%;
  32. left: 0;
  33. right: 0;
  34. overflow: auto;
  35. position: absolute;
  36. }