multiple-devices.scss 674 B

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