You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.less 529B

123456789101112131415161718192021222324252627282930313233343536
  1. .popoverContent {
  2. width: 40vw;
  3. .popoverContentItem {
  4. display: flex;
  5. gap: 10px;
  6. }
  7. .popoverContentText {
  8. white-space: pre-line;
  9. max-height: 50vh;
  10. overflow: auto;
  11. .popoverContentErrorLabel {
  12. color: red;
  13. }
  14. }
  15. }
  16. .operationIcon {
  17. text-align: center;
  18. display: flex;
  19. &:hover {
  20. cursor: pointer;
  21. }
  22. }
  23. .operationIconSpin {
  24. animation: spin 1s linear infinite;
  25. @keyframes spin {
  26. 0% {
  27. transform: rotate(0deg);
  28. }
  29. 100% {
  30. transform: rotate(360deg);
  31. }
  32. }
  33. }