index.less 761 B

123456789101112131415161718192021222324252627282930313233343536
  1. .app-echarts {
  2. flex: 1;
  3. .tooltip {
  4. &-title {
  5. text-align: left;
  6. }
  7. &-item {
  8. display: flex;
  9. align-items: center;
  10. span:first-child {
  11. display: table-cell;
  12. width: 40px;
  13. text-align: left;
  14. vertical-align: middle;
  15. }
  16. span:last-child {
  17. font-weight: bold;
  18. text-align: right;
  19. margin-left: 20px;
  20. }
  21. i {
  22. display: inline-block;
  23. font-size: 0;
  24. margin-right: 8px;
  25. border-radius: 50%;
  26. width: 7px;
  27. height: 7px;
  28. }
  29. }
  30. }
  31. }