tem-and-hum.scss 740 B

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