index.less 581 B

123456789101112131415161718192021222324252627282930313233
  1. .app-echats-timeline {
  2. display: flex;
  3. flex-direction: column;
  4. height: 250px;
  5. &__tip {
  6. margin: auto;
  7. }
  8. &__container {
  9. flex: 1;
  10. display: flex;
  11. flex-direction: column;
  12. .app-echarts {
  13. flex: 1;
  14. }
  15. .legend {
  16. display: flex;
  17. color: #7a8a94;
  18. font-size: 12px;
  19. padding: 4px 4%;
  20. margin: 0;
  21. &-item {
  22. &:not(:first-child) {
  23. margin-left: 10px;
  24. }
  25. }
  26. }
  27. }
  28. }