index.scss 605 B

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