history-multiple-devices.scss 669 B

12345678910111213141516171819202122232425262728293031323334353637
  1. $color: #c0c4cc;
  2. $bgColor: #232526;
  3. $hover-color: #304156;
  4. .multiple_devices_box {
  5. display: flex;
  6. overflow-y: auto;
  7. .station_tree {
  8. min-width: 210px;
  9. max-width: 230px;
  10. overflow-y: auto;
  11. height: calc(100vh - 70px);
  12. border-right: 1px solid #606266;
  13. overflow-y: auto;
  14. @import './tree-data.scss';
  15. }
  16. .charts {
  17. flex: 1;
  18. overflow-y: auto;
  19. height: calc(100vh - 70px);
  20. .show_org {
  21. padding: 3px;
  22. font-size: 28px;
  23. color: #909399;
  24. cursor: pointer;
  25. }
  26. .tools {
  27. display: flex;
  28. margin: 5px;
  29. }
  30. #line_chart {
  31. width: 100%;
  32. height: calc(100% - 60px);
  33. max-width: calc(100% - 5px);
  34. }
  35. }
  36. }