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

index.less 870 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .experiment-result {
  2. height: calc(100% - 10px);
  3. margin-top: 10px;
  4. padding: 20px @content-padding;
  5. overflow-y: auto;
  6. background-color: white;
  7. border-radius: 10px;
  8. &__download {
  9. padding-top: 16px;
  10. padding-bottom: 16px;
  11. padding-left: @content-padding;
  12. color: @text-color;
  13. font-size: 13px;
  14. background-color: #f8f8f9;
  15. border-radius: 4px;
  16. &__btn {
  17. display: block;
  18. height: 36px;
  19. margin-top: 15px;
  20. font-size: 14px;
  21. }
  22. }
  23. &__text {
  24. white-space: pre-wrap;
  25. }
  26. &__images {
  27. display: flex;
  28. align-items: flex-start;
  29. width: 100%;
  30. overflow-x: auto;
  31. :global {
  32. .ant-image {
  33. margin-right: 20px;
  34. &:last-child {
  35. margin-right: 0;
  36. }
  37. }
  38. }
  39. &__item {
  40. height: 248px;
  41. border: 1px solid rgba(96, 107, 122, 0.3);
  42. }
  43. }
  44. }